> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scrapio.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Apple App Store

> Retrieve structured metadata for an Apple App Store app listing.

<Note>
  Apple App Store endpoints require a paid plan (Starter or higher). Without one, this endpoint returns `402 plan_upgrade_required`. See [Pricing](/pricing) for details.
</Note>


## OpenAPI

````yaml get /v1/apple-app-store/app
openapi: 3.1.0
info:
  title: Scrapio
  version: 1.0.0
  description: >-
    Turn any URL into structured data. Fetch raw HTML, crawl sites, extract
    structured content, interact with dynamic pages, and search the web through
    one API.
  contact:
    name: Scrapio Support
    url: https://scrapio.dev
  license:
    name: Proprietary
servers:
  - url: https://api.scrapio.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: System
  - name: Fetch
  - name: Crawl
  - name: Map
  - name: Interact
  - name: Search
  - name: Google
  - name: Fast Search
  - name: Jobs
  - name: YouTube
  - name: Amazon
  - name: Walmart
  - name: Booking
  - name: Agoda
  - name: Airbnb
  - name: ChatGPT
  - name: Perplexity
  - name: Gemini
  - name: Bing
  - name: Reddit
  - name: TikTok
  - name: Apple App Store
  - name: Target
  - name: Monitors
paths:
  /v1/apple-app-store/app:
    get:
      tags:
        - Apple App Store
      summary: Get an Apple App Store app listing
      description: >-
        Retrieves structured metadata for an Apple App Store app listing: name,
        description, price, category, rating, and developer. Backed by our own
        maintained `apple_app_store` Web Scraping API target. Requires a Starter
        plan or higher.
      operationId: getAppleAppStoreApp
      parameters:
        - name: url
          in: query
          required: true
          schema:
            type: string
            format: uri
            description: Apple App Store app listing URL
      responses:
        '200':
          description: Structured Apple App Store app details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AppleAppStoreResponse'
        '400':
          description: Invalid or missing url.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '402':
          description: >-
            Apple App Store dedicated endpoints require a Starter plan or
            higher.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: The requested app could not be found or parsed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: >-
            Daily credit cap exceeded, or the upstream provider rate-limited the
            request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '502':
          description: Apple App Store upstream failed or returned an unparseable page.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Apple App Store execution backend unavailable or unconfigured.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-codeSamples:
        - lang: cURL
          label: cURL
          source: >-
            curl
            "https://api.scrapio.dev/v1/apple-app-store/app?url=https%3A%2F%2Fapps.apple.com%2Fus%2Fapp%2Ftiktok%2Fid835599320"
            \
              -H "Authorization: Bearer $SCRAPIO_API_KEY"
components:
  schemas:
    AppleAppStoreResponse:
      type: object
      properties:
        provider:
          type: string
          enum:
            - apple_app_store
        request_id:
          type: string
        app:
          type: object
          properties:
            url:
              type: string
              format: uri
            name:
              anyOf:
                - type: string
                - type: 'null'
            description:
              anyOf:
                - type: string
                - type: 'null'
            image_url:
              anyOf:
                - type: string
                  format: uri
                - type: 'null'
            price:
              anyOf:
                - type: number
                - type: 'null'
            currency:
              anyOf:
                - type: string
                - type: 'null'
            category:
              anyOf:
                - type: string
                - type: 'null'
            sub_category:
              anyOf:
                - type: string
                - type: 'null'
            rating:
              type: object
              properties:
                value:
                  anyOf:
                    - type: number
                    - type: 'null'
                count:
                  anyOf:
                    - type: integer
                      minimum: 0
                      maximum: 9007199254740991
                    - type: 'null'
              required:
                - value
                - count
              additionalProperties: false
            author:
              type: object
              properties:
                name:
                  anyOf:
                    - type: string
                    - type: 'null'
                url:
                  anyOf:
                    - type: string
                    - type: 'null'
              required:
                - name
                - url
              additionalProperties: false
            operating_system:
              anyOf:
                - type: string
                - type: 'null'
            available_on_device:
              anyOf:
                - type: string
                - type: 'null'
          required:
            - url
            - name
            - description
            - image_url
            - price
            - currency
            - category
            - sub_category
            - rating
            - author
            - operating_system
            - available_on_device
          additionalProperties: false
      required:
        - provider
        - request_id
        - app
      additionalProperties: false
    ErrorResponse:
      type: object
      properties:
        request_id:
          type: string
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
          required:
            - code
            - message
        diagnostics:
          type: object
          properties:
            outcome:
              type: string
              enum:
                - failed
            retryable:
              type: boolean
            blocked:
              type: boolean
            timed_out:
              type: boolean
          required:
            - outcome
            - retryable
          additionalProperties: false
      required:
        - request_id
        - error
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````