- Before using the API, make sure you have obtained the API key. Refer to the link below for instructions on how to obtain it. API For API Key Settings
- All generated images will be automatically deleted after 24 hours. Please make sure to save the images you need to your local storage in a timely manner.
| Parameter | Description |
|---|
| Authorization | Your API Key used for request authorization. |
--request POST https://developer.remaker.ai/api/remaker/v1/ai-sticker/create-job
| Parameter | Type | Required | Description |
|---|
| prompt | string | true | describe the sticker you want to generate. |
| image_file | string | fasle | For sticker generation reference images: if this field is provided, the task will consume 8 points. |
import requests
url = 'https://developer.remaker.ai/api/remaker/v1/ai-sticker/create-job'
headers = {
'accept': 'application/json',
'Authorization': 'your token',
}
payload = {
'prompt': 'A little girl wearing a red hat',
}
response = requests.post(url, headers=headers, data=payload)
print(response.json()) # Print the response content
--request GET https://developer.remaker.ai/api/remaker/v1/ai-sticker/get-job/{job_id}
import requests
url = 'https://developer.remaker.ai/api/remaker/v1/ai-sticker/get-job/rk6w54s8w9rmc0ctrmdsbm4egr'
headers = {
'accept': 'application/json',
'Authorization': 'your token',
}
response = requests.get(url, headers=headers)
print(response.json()) # Print the response content
{
"code": 100000,
"result": {
"job_id": "rk6w54s8w9rmc0ctrmdsbm4egr"
},
"message": {
"en": "Request Success."
}
}
{
"code": 100000,
"result": {
"output": [
"https://cdn.rmimgs.com/datarm/ai-sticker/output/2025-11-27/rk6w54s8w9rmc0ctrmdsbm4egr_0.png",
"https://cdn.rmimgs.com/datarm/ai-sticker/output/2025-11-27/rk6w54s8w9rmc0ctrmdsbm4egr_1.png"
]
},
"message": {
"en": "Request Success."
}
}