Apple App Store Top Grossing Apps API

GET   /api/v1/search?engine=apple_app_store_top_grossing

The Apple App Store Top Grossing Apps API returns ranked apps for a selected storefront and category, including app, developer, category, and pricing data.

API Parameters

Filters

Localization

Pagination

  • Name
    num
    Required
    Optional
    Description

    Number of apps to return. By default, it is set to 50. It must be between 1 and 100.

Engine

  • Name
    engine
    Required
    Required
    Description

    Parameter defines the engine used to retrieve real-time data. It must be set to apple_app_store_top_grossing.

API Key

  • Name
    api_key
    Required
    Required
    Description

    The api_key authenticates your requests. Use it as a query parameter (https://www.searchapi.io/api/v1/search?api_key=YOUR_API_KEY) or in the Authorization header (Bearer YOUR_API_KEY).

Zero Data Retention

  • Name
    zero_retention
    Enterprise Only
    Enterprise Only
    Required
    Optional
    Description

    Set this parameter to true to disable all logging and persistent storage. No request parameters, HTML, or JSON responses are stored or logged. Suitable for high-compliance use cases. Debugging and support may be limited while enabled.

API Examples

Apple App Store Top Grossing Apps - Full Response

Apple App Store Top Grossing Apps - Full Response
GET
https://www.searchapi.io/api/v1/search?category=all&country=us&engine=apple_app_store_top_grossing&num=50
Request
import requests

url = "https://www.searchapi.io/api/v1/search"
params = {
  "engine": "apple_app_store_top_grossing",
  "country": "us",
  "category": "all",
  "num": 50
}

response = requests.get(url, params=params)
print(response.text)
Response
{
  "chart_information": {
    "title": "iTunes Store: Top Grossing Apps",
    "link": "https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTop?cc=us&id=1&popId=38",
    "updated_at": "2026-07-30T08:30:00-07:00"
  },
  "top_grossing_apps": [
    {
      "position": 1,
      "id": "6448311069",
      "bundle_id": "com.openai.chat",
      "title": "ChatGPT",
      "description": "Introducing ChatGPT for iOS: OpenAI’s latest advancements at your fingertips.\n\nThis official app is free, syncs your history across devices, and brings you the latest from OpenAI, including the new image generator.\n\nWith ChatGPT in your pocket, you’ll find:\n\n· Image generation–Generate original images from a description, or transform existing ones with a few simple words. \n· Advanced Voice Mode–Tap the soundwave icon to have a real-time convo on the go. Settle a dinner table debate, or practice a new language. \n· Photo upload—Snap or upload a picture to transcribe a handwritten recipe or get info about a landmark. \n· Creative inspiration—Find custom birthday gift ideas or create a personalized greeting card.\n· Tailored advice—Talk through a tough situation, ask for a detailed travel itinerary, or get help crafting the perfect response. \n· Personalized learning—Explain electricity to a dinosaur-loving kid or easily brush up yourself on a historic event.\n· Professional input—Brainstorm marketing copy or map out a business plan.\n· Instant answers—Get recipe suggestions when you only have a few ingredients.\n\nJoin hundreds of millions of users and try the app captivating the world. Download ChatGPT today.\n\nTerms of service & privacy policy:\nhttps://openai.com/policies/terms-of-use\nhttps://openai.com/policies/privacy-policy",
      "link": "https://apps.apple.com/us/app/chatgpt/id6448311069?uo=2",
      "thumbnail": "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/59/2d/ef/592defc8-04d3-4d04-b5c0-2205f1fa0121/AppIcon-0-0-1x_U007epad-0-0-0-1-0-P3-85-220.png/100x100bb.png",
      "logos": [
        {
          "link": "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/59/2d/ef/592defc8-04d3-4d04-b5c0-2205f1fa0121/AppIcon-0-0-1x_U007epad-0-0-0-1-0-P3-85-220.png/53x53bb.png",
          "width": 53,
          "height": 53
        },
        {
          "link": "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/59/2d/ef/592defc8-04d3-4d04-b5c0-2205f1fa0121/AppIcon-0-0-1x_U007epad-0-0-0-1-0-P3-85-220.png/75x75bb.png",
          "width": 75,
          "height": 75
        },
        {
          "link": "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/59/2d/ef/592defc8-04d3-4d04-b5c0-2205f1fa0121/AppIcon-0-0-1x_U007epad-0-0-0-1-0-P3-85-220.png/100x100bb.png",
          "width": 100,
          "height": 100
        },
        {
          "link": "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/59/2d/ef/592defc8-04d3-4d04-b5c0-2205f1fa0121/AppIcon-0-0-1x_U007epad-0-0-0-1-0-P3-85-220.png/512x512bb.png",
          "width": 512,
          "height": 512
        }
      ],
      "developer": {
        "name": "OpenAI OpCo, LLC",
        "id": "1684349733",
        "link": "https://apps.apple.com/us/developer/openai-opco-llc/id1684349733?uo=2"
      },
      "category": {
        "id": 6007,
        "name": "Productivity",
        "canonical_name": "Productivity",
        "link": "https://apps.apple.com/us/genre/ios-productivity/id6007?uo=2"
      },
      "price": {
        "type": "Free",
        "formatted_price": "Get",
        "extracted_price": 0.0,
        "currency": "USD",
        "currency_symbol": "$",
        "is_free": true
      },
      "release_date": "2023-05-18T00:00:00-07:00",
      "release_date_text": "May 18, 2023"
    }
    ...
  ]
}