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

# Get a marketplace API's detail

> Full detail for one marketplace listing, including its `canonical_scraper_id` and endpoint list. No authentication required. Use `canonical_scraper_id` to call the shared canonical directly: POST /scraper/{canonical_scraper_id}/{endpoint_name}.



## OpenAPI

````yaml /openapi.json get /marketplace/apis/{id}
openapi: 3.1.0
info:
  title: Parse API
  description: Programmatic API for creating, managing, and executing web scraping APIs.
  version: 2.0.0
servers:
  - url: https://api.parse.bot
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Execute
    description: Call the endpoints of an API you've built — the most common operation
  - name: Marketplace
    description: >-
      Browse and search the public marketplace of pre-built APIs (no auth
      required)
  - name: Dispatch
    description: Create and manage scraping APIs
  - name: Export
    description: Export API specs in standard formats
  - name: Updates
    description: Check and merge upstream improvements to your APIs
paths:
  /marketplace/apis/{id}:
    get:
      tags:
        - Marketplace
      summary: Get a marketplace API's detail
      description: >-
        Full detail for one marketplace listing, including its
        `canonical_scraper_id` and endpoint list. No authentication required.
        Use `canonical_scraper_id` to call the shared canonical directly: POST
        /scraper/{canonical_scraper_id}/{endpoint_name}.
      operationId: get_marketplace_api
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Marketplace API detail
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketplaceDetail'
        '404':
          description: Listing not found
      security: []
components:
  schemas:
    MarketplaceDetail:
      type: object
      description: >-
        Full listing detail. additionalProperties is allowed — only the fields
        most useful for calling the API are documented here.
      additionalProperties: true
      properties:
        id:
          type: string
        slug:
          type: string
        name:
          type: string
        description:
          type: string
          nullable: true
        source_url:
          type: string
          nullable: true
        canonical_scraper_id:
          type: string
          nullable: true
          description: >-
            The shared canonical scraper id. Call it directly with any API key:
            POST /scraper/{canonical_scraper_id}/{endpoint_name}.
        is_authenticated:
          type: boolean
          nullable: true
        apis:
          type: array
          description: >-
            The API's endpoints (method, name, input_params, return_schema,
            initiates_session).
          items:
            $ref: '#/components/schemas/EndpointSpec'
        latest_version:
          type: integer
          nullable: true
          description: Canonical's latest release version.
        pinned_version:
          type: integer
          nullable: true
          description: The version your subscription is pinned to, if you've subscribed.
        user_status:
          type: string
          nullable: true
          enum:
            - none
            - subscribed
            - forked
          description: Your relationship to this API (when authenticated).
        user_scraper_id:
          type: string
          nullable: true
          description: >-
            If you've subscribed or forked, your own scraper_id to call instead
            of the canonical.
        primary_category:
          type: string
          nullable: true
        secondary_categories:
          type: array
          items:
            type: string
    EndpointSpec:
      type: object
      properties:
        method:
          type: string
          description: HTTP method (GET, POST, etc.)
        endpoint_name:
          type: string
          description: Endpoint path segment
        description:
          type: string
        input_params:
          type: object
        return_schema:
          type: object
        initiates_session:
          type: boolean
          description: >-
            True for a login endpoint that returns a session — see Authenticated
            APIs.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        API key for programmatic access. Create one in the Parse dashboard at
        https://parse.bot (Settings → API Keys). Keys start with 'pmx_'.

````