Chocodata App Store API

The App Store API from Chocodata — 2 operation(s) for app store.

Operations 2

GET /api/v1/appstore/product Specific-item endpoint: structured data for a single Apple App Store app #
GET /api/v1/appstore/reviews Apple App Store reviews for a single app #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/chocodata-app-store-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

chocodata-app-store-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Chocodata Appstore API
  version: 1.0.0
  description: One web scraper API for the whole web.
  contact:
    name: Chocodata
    url: https://chocodata.com
    email: hello@chocodata.com
servers:
- url: https://api.chocodata.com
security:
- apiKeyQuery: []
tags:
- name: App Store
paths:
  /api/v1/appstore/product:
    get:
      operationId: getAppStoreProduct
      summary: 'Specific-item endpoint: structured data for a single Apple App Store app'
      parameters:
      - name: api_key
        in: query
        required: true
        schema:
          type: string
        description: Your API key, passed as the api_key query parameter.
      - name: query
        in: query
        required: true
        schema:
          type: string
        description: App Store app id or bundle id.
      - name: country
        in: query
        required: false
        schema:
          type: string
          default: us
        description: Two-letter storefront country code.
      responses:
        '200':
          description: 'Structured app data: title, developer, rating, price, screenshots, description, and more.'
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Missing or invalid API key.
        '502':
          description: The target site blocked us or returned an unparseable page (not charged).
      tags:
      - App Store
  /api/v1/appstore/reviews:
    get:
      operationId: getAppStoreReviews
      summary: Apple App Store reviews for a single app
      parameters:
      - name: api_key
        in: query
        required: true
        schema:
          type: string
        description: Your API key.
      - name: query
        in: query
        required: true
        schema:
          type: string
        description: App Store app id.
      - name: country
        in: query
        required: false
        schema:
          type: string
          default: us
        description: Two-letter storefront country code.
      responses:
        '200':
          description: List of reviews with rating, title, body, author, and date.
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Missing or invalid API key.
      tags:
      - App Store
components:
  securitySchemes:
    apiKeyQuery:
      type: apiKey
      in: query
      name: api_key