AsoWorld Open Api
  1. Order
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
      POST
    • Get transaction history
      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
  • 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. Order

List your orders

POST
https://asoworld.com/openApi/Order/list
Filter your order information with pagination and filtering options. This operation is free.

Request

Header Params

Body Params application/json

Examples
{
    "page": 1,
    "pageSize": 20,
    "orderId": null,
    "platform": null,
    "installType": null,
    "appId": null,
    "region": null,
    "state": 0,
    "stime": null,
    "etime": null,
    "submitType": "PACKAGE"
}

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
curl --location --request POST 'https://asoworld.com/openApi/Order/list' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "page": 1,
    "pageSize": 20,
    "orderId": null,
    "platform": null,
    "installType": null,
    "appId": null,
    "region": null,
    "state": 0,
    "stime": null,
    "etime": null,
    "submitType": "PACKAGE"
}'

Responses

🟢200
application/json
Successfully retrieved order list
Body

Example
{
    "P": {
        "count": 5,
        "hasAutoKeywordOrder": 2,
        "list": [
            {
                "_id": "ORD123456",
                "appId": "com.example.app",
                "userId": 9999999,
                "state": 0,
                "platform": 1,
                "region": "US",
                "origin": 1,
                "submitType": "AUTO_KEYWORD",
                "installType": "24h",
                "isArchived": false,
                "orderPrice": 2000,
                "createTime": 1704096000000,
                "startTime": -1,
                "finishTime": -1,
                "days": [
                    [
                        {
                            "word": "PACKAGE",
                            "count": 10,
                            "impressionRatio": 100,
                            "openAppRatio": 50
                        }
                    ]
                ]
            }
        ]
    }
}
🟠400
Previous
Resume an order
Next
Cancel an order
Built with