Get list of your tracked keywords with pagination and filtering options. This operation is free.
Request
Body Params application/json
{
"appId": "com.facebook.katana",
"region": "US",
"platform": 1,
"word": "",
"page": 0,
"pageSize": 30
}
Request Code Samples
curl --location --request POST 'https://uat.asoworld.com/openApi/Keyword/list' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"appId": "com.facebook.katana",
"region": "US",
"platform": 1,
"word": "",
"page": 0,
"pageSize": 30
}'
Responses
application/json
Successfully retrieved keyword list
{
"P": {
"count": 5,
"list": [
{
"_id": {
"$oid": "507f1f77bcf86cd799439011"
},
"appId": "com.openai.chatgpt",
"appName": "chatgpt",
"platform": 2,
"region": "US",
"keyword": "word",
"hot": 78,
"num": 245,
"score": 92,
"createTime": 1704096000000,
"icon": "https://example.com/icon1.png"
}
]
}
}
Modified at 2026-02-04 07:16:53