Recently Used Stickers
The Recently Used Stickers API gives the list of stickers which a user has used recently. You can use this API to drastically enhance user experience for users as showing a group of recently used stickers to users makes it a lot easier to them when sending stickers.
Request URL
GET
https://camera.stipop.io/v1/sticker/recent
Best Practices
- Check all the components that can be put into building this from our UI Kit. It will help you build the sticker feature much quicker and easier.
- We recommend you using this along with Frequently Used Stickers to provide the best user experience to the users.
Parameters
Required | Type | Description |
---|---|---|
apikey | string | Stipop API Key for your app. Visit developer dashboard for new API Key. |
Required | Type | Description |
---|---|---|
userId | string | Unique value for every user to distinguish unique users. The userId can be in any string format. Important: Using same userId for multiple users is not allowed. |
Example Request
Sample call for a list of recently used stickers
cURL
1
curl --location --request GET "https://camera.stipop.io/v1/sticker/recent?userId=xxx" --header "apikey:xxxxxxxxx"
Success Response
Success Response code 200
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"header": {
"code": "0000",
"status": "success",
"message": "success"
},
"body": {
"stickerList": [
{
"stickerId": 60423,
"stickerImg": "https://img....95828_7.png"
},
{
"stickerId": 60425,
"stickerImg": "https://img.....96173_9.png"
}
]
}
}
Response Format
Name | Type | Description |
---|---|---|
stickerId | string | Unique value for a single sticker |
stickerImg | string | Sticker image url |
Error Response
Error | Code | Description |
---|---|---|
non exist apikey | 9000 | The API key used does not exist |
server error | 1000 | Unable to receive data from the server |
Was this page helpful?
We’re here to help. Contact us.