1. Keyword
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
  • 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
  • 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
  • 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

Get keyword ranking information

POST
https://asoworld.com/openApi/Keyword/rank
Get current ranking of keywords with refresh time and 24h comparison.

Request

Header Params

Body Params application/json

Example
{
    "region": "US",
    "appId": "com.facebook.katana",
    "platform": 1,
    "lang": null,
    "words": [
        "facebook",
        "katana"
    ]
}

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 'https://asoworld.com/openApi/Keyword/rank' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data '{
    "region": "US",
    "appId": "com.facebook.katana",
    "platform": 1,
    "lang": null,
    "words": [
        "facebook",
        "katana"
    ]
}'

Responses

🟢200
application/json
Successfully retrieved keyword rankings.
Note: The rank field indicates the keyword's current search ranking position. A value greater than 0 means the keyword has an active ranking at that position. A value of -1 means the keyword is not covered or no data is available. The diff field will be "out" when the keyword is not covered, and "none" when no data is available.
Bodyapplication/json

Example
{
    "P": {
        "facebook": {
            "rank": 1,
            "ts": 1631171845877,
            "diff": "0"
        },
        "katana": {
            "rank": 40,
            "ts": 1631172599088,
            "diff": "-8"
        }
    }
}
🟠400
Previous
My Keywords
Next
Get keyword ranking history
Built with