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

# List all available adapters



## OpenAPI

````yaml /spec/points.yaml get /adapters
openapi: 3.0.3
info:
  title: Points API
  description: API for querying points data from various adapters and managing API keys
  version: 1.0.0
  contact:
    name: Portal Labs
    url: https://0xportal.io
servers:
  - url: https://checkpoint.exchange/api/v1
    description: Production server
security: []
tags:
  - name: Points
    description: >-
      Endpoints for retrieving points data for a specific address across one or
      more protocols
paths:
  /adapters:
    get:
      tags:
        - Points
      summary: List all available adapters
      responses:
        '200':
          description: Successfully returned list of adapters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdaptersList'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKeyAuth: []
components:
  schemas:
    AdaptersList:
      type: object
      properties:
        success:
          type: boolean
        adapters:
          type: array
          items:
            type: string
    Error:
      type: object
      properties:
        success:
          type: boolean
          default: false
        error:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key based authentication

````