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

# List supported DEX protocols

> Returns the lowercase snake_case names of every DEX Dexploit currently indexes. These are the values you'll pass as `protocol=` to [/api/v1/pairs](#tag/pairs/get/api/v1/pairs) and [/api/v1/top-movers](#tag/stats-trends/get/api/v1/top-movers), or as `dex=` to [/swaps](#tag/swaps/get/swaps).

**Public — no API key required.** This is one of three intentionally keyless endpoints (along with [/api/v1/stats](#tag/stats-trends/get/api/v1/stats) and [/tokens/{mint}/audit](#tag/tokens/get/tokens/{mint}/audit)).



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/protocols
openapi: 3.1.0
info:
  title: Dexploit API
  version: 1.0.0
  description: Real-time and historical Solana DEX swap and OHLCV data.
servers:
  - url: https://api.dexploit.dev
    description: Production
security:
  - ApiKeyHeader: []
  - BearerAuth: []
  - ApiKeyQuery: []
paths:
  /api/v1/protocols:
    get:
      tags:
        - Stats & trends
      summary: List supported DEX protocols
      description: >-
        Returns the lowercase snake_case names of every DEX Dexploit currently
        indexes. These are the values you'll pass as `protocol=` to
        [/api/v1/pairs](#tag/pairs/get/api/v1/pairs) and
        [/api/v1/top-movers](#tag/stats-trends/get/api/v1/top-movers), or as
        `dex=` to [/swaps](#tag/swaps/get/swaps).


        **Public — no API key required.** This is one of three intentionally
        keyless endpoints (along with
        [/api/v1/stats](#tag/stats-trends/get/api/v1/stats) and
        [/tokens/{mint}/audit](#tag/tokens/get/tokens/{mint}/audit)).
      operationId: listProtocols
      responses:
        '200':
          description: Supported protocols
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      protocols:
                        type: array
                        items:
                          $ref: '#/components/schemas/Protocol'
                  error:
                    type:
                      - object
                      - 'null'
      security: []
components:
  schemas:
    Protocol:
      type: string
      description: Canonical lowercase snake_case DEX name.
      enum:
        - pumpfun
        - pumpswap
        - raydium_amm
        - raydium_clmm
        - raydium_cpmm
        - orca
        - meteora_damm_v2
        - meteora_dbc
        - meteora_dlmm
        - meteora_pools
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Preferred for swaps-api endpoints (`/swaps/*`, `/stats/*`, `/trending`,
        `/pool-events`).
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Required by the OHLCV endpoints (`/api/v1/*`) and accepted by every
        other endpoint. Send `Authorization: Bearer ohlcv_live_sk_<your_key>`.
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api_key
      description: >-
        Browser-friendly alternative to the Bearer header — accepted by every
        endpoint and required for WebSocket from the browser.

````