Stipop Docs | Documentation for SDK and API

Search Suggestions

The Search Suggestions API shows search tag suggestions based on trendy searches by other users. It's essential to use it along with the sticker search API. 20 tag suggestions are provided through this API.

Request URL

GET
https://camera.stipop.io/v1/search/keyword

Best Practices

  1. After adding the sticker search API, try adding sticker suggestions to improve search engagement.
  2. It's best to use the Search Suggestions API along with Recent Search API for best user experience.

Parameters

Request Headers
RequiredTypeDescription
apikeystringStipop API Key for your app.
Visit developer dashboard for new API Key.

Example Request

Call a list of search suggestion tags
1
curl --location --request GET "https://camera.stipop.io/v1/search/keyword" --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
21

{
  "header": {
    "code": "0000",
    "status": "success",
    "message": "success"
  },
  "body": {
    "keywordList": [
      {
        "keyword": "hi"
      },
      {
        "keyword": "hello"
      },
      {
        "keyword": "thanks"
      }
    ]
  }
}

Response Format

Attributes
NameTypeDescription
keywordstringSearch suggestion tag

Error Response

ErrorCodeDescription
Description9000The API key used does not exist
server error1000Unable to receive data from the server
We’re here to help. Contact us.