test AsoWorld Open Api
  1. Keyword
test AsoWorld Open Api
  • REFERENCE
    • Make Your First API Request
    • API Usage Rules
  • COMMON PARAM
    • OpenAPI Authentication Guide
    • Platform And Region
    • Google Play Language Support
    • Order & SubmitType Reference
    • Transaction Types Reference
  • App
    • Add app
      POST
    • Delete app
      POST
    • My Apps
      POST
  • Keyword
    • Add keyword to app
      POST
    • My Keywords
      POST
    • Get keyword ranking information
      POST
    • Get keyword ranking history
      POST
    • Get recommended keywords
      POST
    • Query keyword install
      POST
  • Order
    • Save order
      POST
    • Start a draft order
      POST
    • Batch save Auto-Suggestion draft orders
      POST
    • Batch start Auto-Suggestion draft orders
      POST
    • Pause an order
      POST
    • Resume an order
      POST
    • List your orders
      POST
    • Cancel an order
      POST
    • Delete draft order
      POST
    • Rating Calculator
      POST
  • Money
    • Get USD balance
    • Get transaction history
  • AI
    • Generate reviews
  • Schemas
    • TransactionRequest
    • AddAppRequest
    • SaveOrderRequest
    • AddKeywordRequest
    • Platform
    • UsdBalanceResponse
    • DeleteAppRequest
    • OrderDetails
    • KeywordRankRequest
    • Region
    • TransactionItem
    • ListAppsRequest
    • DayInstallItem
    • KeywordRankHistoryRequest
    • OrderState
    • TransactionResponse
    • AppInfo
    • ReviewerInfo
    • RecommendKeywordRequest
    • InstallType
    • ErrorResponse
    • ListAppsResponse
    • StartOrderRequest
    • ListKeywordsRequest
    • SubmitType
    • SuccessResponse
    • BatchAutoSuggestionRequest
    • KeywordInstallRequest
    • AutoKeywordOrderDetails
    • MultilingualCountry
    • BatchStartRequest
    • KeywordRankInfo
    • AutoKeywordDayItem
    • OrderIdRequest
    • KeywordHistoryItem
    • ListOrdersRequest
    • RecommendedKeyword
    • GenerateReviewsRequest
    • KeywordInfo
    • RatingCalculatorRequest
    • KeywordInstallInfo
    • SaveOrderResponse
    • KeywordRankResponse
    • ListOrdersResponse
    • KeywordRankHistoryResponse
    • OrderInfo
    • RecommendKeywordResponse
    • BatchSaveOrderResponse
    • GenerateReviewsResponse
    • ListKeywordsResponse
    • RatingCalculatorResponse
    • KeywordInstallResponse
  1. Keyword

My Keywords

POST
/Keyword/list
Get list of your tracked keywords with pagination and filtering options. This operation is free.

Request

Header Params

Body Params application/json

Example
{
    "appId": "com.facebook.katana",
    "region": "US",
    "platform": 1,
    "word": "",
    "page": 0,
    "pageSize": 30
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
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

🟢200
application/json
Successfully retrieved keyword list
Body

Example
{
    "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"
            }
        ]
    }
}
🟠400
Modified at 2026-02-04 07:16:53
Previous
Add keyword to app
Next
Get keyword ranking information
Built with