Search...
Menu

API: Uploading Creatives (Technical Guide)

Label:API ,API key ,developer guide ,technical guide ,upload creative

You need to use your Mintegral token to manage your offers. For more details, please check Token.

Here's how you can manage creatives to best utilize Mintegral's proprietary algorithm for optimal campaign and offer performance.

Request Address

Upload Image / Upload Video

https://ss-storage-api.mintegral.com/api/open/v1/creatives/upload

Upload Playable

https://ss-storage-api.mintegral.com/api/open/v1/playable/upload

Request Method

POST

Request Example

json Copy
POST /api/open/v1/creatives/upload
HTTP/1.1 Host: ss-storage-api.mintegral.com
Content-Type: multipart/form-data;boundary=xxxx

Request Parameter

Fields Type Explanations Default Value Examples
file file Creative file detail. If md5 of file already exists, an error will occur.

Response

Fields Type Explanations
code int 200 code indicates success. All other codes are fails.
msg string If success, report "success". If fail, return detailed fail info.
data json If success, return to creative data. If fail, return detailed fail info.
creative_md5 string MD5 for creative has been uploaded successfully.
creative_name string Creative name; please note creative name must be letters, digits, or underscores

Response Example

json Copy
{
  "msg": "success",
  "code": 200,
  "data": {
    "creative_md5": "0a6335cd9151ac5dc79ad996f4e12674",
    "creative_name": "creative_test.png"
  }
}
Previous
API: Overview on Managing Creatives (Technical Guides)
Next
API: Retrieving Creative Lists (Technical Guide)
Last modified: 2026-08-11