FoxData Open API
My License
My License
  1. I. Quick Start
  • I. Quick Start
    • 1. API Overview
    • 2. Quick Start
    • 3. Authorization
    • 4. Request & Response
    • 5. Rate Limiting
  • II. List of Interfaces
    • 1. application Services
      • 1001-App-Basic Info
      • 1002-App-Extended Info
      • 1003-App-Visibility Score
      • 1004-App-Apps by Same Developer
      • 1005-App-Ranking History
      • 1006-App-Featured Recommendations
      • 1007-App-Ratings & Reviews
      • 1008-App-Version History
      • 1009-App-Competitor Comparison
      • 1010-App-Competitor Bidding
      • 1011-App-Covered Keywords
      • 1012-App-Keyword Expansion
      • 1013-App-Bidding Keywords
      • 1014-App-Bidding Keyword Periodic Monitoring-Task Initiation
      • 1014-App-Bidding Keyword Periodic Monitoring-Task Retrieval
      • 1014-App-Bidding Keyword Periodic Monitoring-Data Retrieval
      • 1015-App-CPP Ad Creatives
      • 1016-App-App Tags
      • 1017-App-Download & Revenue Estimates
      • 1018-App-Smart Keyword Recommendations
      • 1019-App-Active Users
      • 1020-App-Basic Info (Advanced)
      • 1021-App-CPP Keywords
    • 2. Market Services
      • 2001-Market-Realtime Charts
      • 2002-Market-Global Chart Analysis
      • 2003-Market-Search Volume Charts
      • 2004-Market-Download & Revenue Charts
      • 2005-Market-Active Users & Customers
      • 2006-Market-App Release Monitoring
      • 2007-Market-Cleared Keyword Monitoring
      • 2008-Market-Cleared Ranking Monitoring
      • 2009-Market-App Delisting Monitoring
    • 3. ASA Services
      • 3001-Ad-Bidding Apps
      • 3002-Ad-Bidding Keywords
      • 3003-Ad-Bidding Keyword Analysis
      • 3004-Ad-CPPs
      • 3005-ASA Tab Rate Task
      • 3005-ASA Tab Rate Result
    • 4. Kerword research Services
      • 4001-Keyword Search
      • 4002-Keyword Expansion
      • 4003-Keyword Search Details
      • 4004-App-App Keywords
    • 9. Other Services
      • 9001-Paginated Query API
  • III. Data Dictionary and Definitions
    • 1. Application Classification Code
    • 2. Time and Location Information
    • 3. Regional Language Comparison Chart
    • 4. Explanation of Data Update Frequency
  • IV. Appendix
    • 1. Release Notes
    • 2. FAQ
    • 3. Contact and Support
  1. I. Quick Start

2. Quick Start

Quick Start#

This section explains how to integrate with the API: prepare the access URL and authentication credentials, obtain the x-openapi-key, and send a real request using the example endpoint to quickly verify the call flow and response structure.

1. Prepare Information#

You will need to prepare:
Base URL: https://api.foxdata.com/apiv1/open-api
License: Used for authentication
API Path: We recommend starting from “Application Basic Information”
Note: The authentication method used in this document primarily relies on x-openapi-key (see “Authentication and Authorization” below for details).

2. Obtain License (API Key)#

After activating your account in the FoxData Personal Center or through a sales representative, you will receive an authorization key for API calls:
Header Name: x-openapi-key
Value: Your License (placeholder; the actual value will be the key you receive)
image.png

3. First Call (Recommended Example: App Basic Information)#

The following example demonstrates how to “query the basic information of an app in the app store (including title, subtitle, description, images, etc.)”.
API Endpoint: POST /app/app-info
Authentication: Include x-openapi-key in the request header
Request Body: JSON
cURL Example
appId: Application identifier (App ID in the App Store, Bundle ID in Google Play)
region: Country/region (e.g., US)
language: Language (optional; e.g., en_US)

4. How to Determine if the Call Was Successful#

The API typically returns structured JSON (example):
{
  "code": 200,
  "msg": "success",
  "data": {
    "requestParam": {
      "appId": "com.moye.shelter",
      "region": "US",
      "language": "en_US"
    },
    "result": [
      {
        "appId": "com.moye.shelter",
        "appName": "Gods & Demons",
        "icon": "https://...",
        "subtitle": "...",
        "descriptions": "...",
        "category": "Social Networking",
        "categoryId": "7014",
        "status": "ONLINE"
      }
    ],
    "creditsCost": {
      "requestCredits": 0,
      "baseCredits": 10,
      "extraCredits": 0,
      "totalCostCredits": 10
    }
  }
}
Success: Generally indicated by code=200 and msg=success (subject to the actual response from the API)
Business data: Typically found in data.result
Credits consumed: Typically found in data.creditsCost.totalCostCredits

Modified at 2026-05-09 04:51:38
Previous
1. API Overview
Next
3. Authorization
Built with