> ## 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.

# Search and browse the marketplace

> Search the public marketplace of pre-built APIs. No authentication required. Returns hybrid-ranked results when `q` is provided, or a browseable list ordered by `sort` otherwise. Use this to find an existing API for a site before building your own with POST /dispatch.



## OpenAPI

````yaml /openapi.json get /marketplace/apis
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:
    get:
      tags:
        - Marketplace
      summary: Search and browse the marketplace
      description: >-
        Search the public marketplace of pre-built APIs. No authentication
        required. Returns hybrid-ranked results when `q` is provided, or a
        browseable list ordered by `sort` otherwise. Use this to find an
        existing API for a site before building your own with POST /dispatch.
      operationId: search_marketplace
      parameters:
        - name: q
          in: query
          required: false
          description: Free-text search across API name, description, and endpoints.
          schema:
            type: string
        - name: category
          in: query
          required: false
          description: Filter by category slug.
          schema:
            type: string
        - name: sort
          in: query
          required: false
          description: >-
            Ordering when not searching: 'top' (highest rated), 'recent'
            (newest), or 'name' (A→Z).
          schema:
            type: string
            enum:
              - top
              - recent
              - name
            default: top
        - name: country
          in: query
          required: false
          description: ISO-2 country code for region-aware ranking (e.g. 'US').
          schema:
            type: string
        - name: semantic
          in: query
          required: false
          description: Include the semantic (embedding) ranking arm when searching.
          schema:
            type: boolean
            default: true
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            minimum: 1
            maximum: 200
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            default: 0
            minimum: 0
      responses:
        '200':
          description: Marketplace search results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketplaceListResponse'
      security: []
components:
  schemas:
    MarketplaceListResponse:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/MarketplaceListing'
        total:
          type: integer
        limit:
          type: integer
        offset:
          type: integer
    MarketplaceListing:
      type: object
      properties:
        id:
          type: string
          description: >-
            Marketplace listing id. Use it with GET /marketplace/apis/{id}
            (detail + canonical_scraper_id), or /subscribe and /fork.
        slug:
          type: string
        name:
          type: string
        description:
          type: string
          nullable: true
        front_facing_description:
          type: string
          nullable: true
        source_url:
          type: string
          nullable: true
        is_authenticated:
          type: boolean
          nullable: true
          description: True if the API requires login.
        endpoint_count:
          type: integer
        updated_at:
          type: string
          nullable: true
        primary_category:
          type: string
          nullable: true
        secondary_categories:
          type: array
          items:
            type: string
        endpoint_preview:
          type: array
          items:
            type: object
            properties:
              endpoint_name:
                type: string
              method:
                type: string
              summary:
                type: string
                nullable: true
  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_'.

````