Get API Key
Normal return
{
"code": 0,
"data": {
"imageBase64: "iVBORw0KGgo..." //base64 encoded of the image
},
"msg": null,
"time": 1590462453264
}
Error
{
"code": 1001, //
"data": null
"msg": 'Insufficient balance',
"time": 1590462453264
}
Stickers API
Add Sticker to images
Parameter | Type | Description |
---|
stickerURL | String | URL to sticker image |
Sample code
Curl
curl -H 'key: INSERT_YOUR_API_KEY_HERE' \
-F 'file=@/path/to/file.jpg' \
-F 'stickerURL=PATH-TO-IMAGE' \
-f 'http://localhost:3000/v1/sticker/addSticker' \
-o out.png
Python
import requests
payload = dict(stickerURL=PATH-TO-IMAGE);
response = requests.post(
'http://localhost:3000/v1/sticker/addSticker',
files={'file': open('/path/to/file.jpg', 'rb')},
data = payload,
headers={'key': 'INSERT_YOUR_API_KEY_HERE'},
)
Node.js
const requestOptions = {
method: 'POST',
headers: {
'key': 'INSERT_YOUR_API_KEY_HERE',
'Content-Type': 'application/json'
},
body: JSON.stringify({ title: 'Add sticker' ,
stickerURL:'PATH-TO-IMAGE'
})
};
fetch('http://localhost:3000/v1/sticker/addSticker', requestOptions)
.then(response => response.json())
.then(data => {
console.log(data);
});
Bathroom
Business
Food
Emotions
Health
Transport
Sports
Misc