> ## 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 marketplace endpoints

> Search across individual endpoints in the marketplace (not just APIs). No authentication required. Returns two groups: matching APIs and matching endpoints. Useful when you know the data you want but not which API provides it.



## OpenAPI

````yaml /openapi.json get /marketplace/search-endpoints
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/search-endpoints:
    get:
      tags:
        - Marketplace
      summary: Search marketplace endpoints
      description: >-
        Search across individual endpoints in the marketplace (not just APIs).
        No authentication required. Returns two groups: matching APIs and
        matching endpoints. Useful when you know the data you want but not which
        API provides it.
      operationId: search_marketplace_endpoints
      parameters:
        - name: q
          in: query
          required: true
          description: Free-text query (1–120 chars).
          schema:
            type: string
            minLength: 1
            maxLength: 120
        - name: api_limit
          in: query
          required: false
          schema:
            type: integer
            default: 6
            minimum: 1
            maximum: 20
        - name: endpoint_limit
          in: query
          required: false
          schema:
            type: integer
            default: 12
            minimum: 1
            maximum: 40
        - name: country
          in: query
          required: false
          description: ISO-2 country code for region-aware ranking.
          schema:
            type: string
      responses:
        '200':
          description: Combined API and endpoint search results
          content:
            application/json:
              schema:
                type: object
      security: []
components:
  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_'.

````