test AsoWorld Open Api
  1. COMMON PARAM
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. COMMON PARAM

OpenAPI Authentication Guide

This guide explains how to authenticate and use the ASO World OpenAPI.

Getting Started#

Step 1: Obtain Your OpenAPI Token#

Please visit https://asoworld.com/my/profile to obtain your OpenAPI Token. This token is required for all API requests.

Step 2: Authentication Header#

Attach the token to the Authorization header of your HTTP request using the following format:
Authorization: Bearer your_open_api_token
Important Notes:
Replace your_open_api_token with your actual token from the profile page
The token must be prefixed with Bearer (note the space after "Bearer")
Keep your token secure and do not share it publicly

API Base URL#

All API requests should use the following base URL:
POST https://asoworld.com/openApi

Request Format#

The complete request format follows this pattern:
POST https://asoworld.com/openApi{endpoint_path}

Example Requests#

Create Order#

Authentication Examples#

cURL Example#

JavaScript Example#

Python Example#

Best Practices#

1.
Secure Token Storage: Store your API token securely and never expose it in client-side code
2.
Token Rotation: Regularly rotate your API token for security
3.
Rate Limiting: Respect API rate limits to avoid being blocked
4.
Error Handling: Implement proper error handling for authentication failures
5.
HTTPS Only: Always use HTTPS for API requests to protect your token

Common Issues#

1.
Invalid Request Format
Ensure you're using POST method
Verify the base URL is correct
Check Content-Type header is set to application/json
2.
Token Not Working
Re-visit https://asoworld.com/my/profile to get a fresh token
Check for any extra spaces or characters in your token
Modified at 2026-02-03 11:51:19
Previous
API Usage Rules
Next
Platform And Region
Built with