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

# List providers

> 
Returns a list of quote providers supported by Faraday.




## OpenAPI

````yaml /api-reference/faraday-api.json get /v1/providers
openapi: 3.1.0
info:
  title: Faraday API
  description: >-

    The **Faraday API** provides secure, compliant infrastructure for stablecoin
    transactions, identity verification, and transaction monitoring across
    multiple blockchains.


    ### Key Features

    - **Swap Routing** — Discover optimal swap paths for stablecoin transfers,
    including cross-chain routes.

    - **IVMS101 Person Records** — Create, query, and manage structured person
    data for FATF Travel Rule compliance.

    - **Transaction Submission and Monitoring** — Submit and track stablecoin
    transactions.

    - **Reporting** — View historical transaction reports including associated
    IVMS101 records.


    ### Authentication

    Most requests require an API key (Bearer token).


    Generate and manage API keys by signing in to https://app.range.org/


    API Keys can be found under the APIs section. A free monthly credit
    allowance is available, with more credits available to paid plans.


    Include this header with every authenticated Faraday request:


    ```

    Authorization: Bearer <your_token>

    ```


    ### Base URL

    - Production: `https://api.faraday.range.org`


    ### Example Request

    ```bash

    curl -X GET 'https://api.faraday.range.org/v1/persons'   --header
    'Authorization: Bearer <your_token>'

    ```
            
  contact:
    name: Faraday
    url: https://range.org/faraday
    email: faraday@range.org
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.faraday.range.org
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Transactions
    description: Send, track and find transactions
  - name: Persons
    description: >-
      Manage IVMS101 Person records. This includes creation and retrieval of
      structured person data for compliance with FATF Travel Rule standards.
  - name: Chains
    description: Chains supported by Faraday
  - name: Tokens
    description: Tokens supported by Faraday
  - name: Providers
    description: Providers supported by Faraday
paths:
  /v1/providers:
    get:
      tags:
        - Providers
      summary: List providers
      description: |

        Returns a list of quote providers supported by Faraday.
      operationId: list_providers
      responses:
        '200':
          description: All supported providers
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProviderInfo'
      security:
        - {}
components:
  schemas:
    ProviderInfo:
      type: object
      description: '---- API-facing struct ----'
      required:
        - slug
        - label
        - kind
        - aliases
      properties:
        aliases:
          type: array
          items:
            type: string
          description: Aliases accepted for lookup.
          example:
            - skip
            - skip-go
        kind:
          $ref: '#/components/schemas/ProviderKind'
          description: Provider category (aggregator, bridge, etc.).
        label:
          type: string
          description: Human-readable name.
          example: Skip Go
        slug:
          type: string
          description: Canonical slug for this provider.
          example: skipgo
        website:
          type:
            - string
            - 'null'
          description: Website or documentation URL (optional).
          example: https://skip.build
    ProviderKind:
      type: string
      enum:
        - aggregator
        - direct
        - bridge
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````