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

> 
Returns an array of all blockchain networks supported by the Faraday API.

Each object in the response describes one supported network and includes:
- `slug`: canonical short identifier for the chain
- `label`: human-readable display name
- `kind`: network family (`evm`, `solana`, or `cosmos`)
- `aliases`: alternative strings accepted in API requests

> **Note:** You may use either the `slug` or one of its `aliases` as the value for
> `from_chain` or `to_chain` when submitting quote or transaction requests.

This endpoint does not require authentication.




## OpenAPI

````yaml /api-reference/faraday-api.json get /v1/networks
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/networks:
    get:
      tags:
        - Networks
      summary: List networks
      description: >

        Returns an array of all blockchain networks supported by the Faraday
        API.


        Each object in the response describes one supported network and
        includes:

        - `slug`: canonical short identifier for the chain

        - `label`: human-readable display name

        - `kind`: network family (`evm`, `solana`, or `cosmos`)

        - `aliases`: alternative strings accepted in API requests


        > **Note:** You may use either the `slug` or one of its `aliases` as the
        value for

        > `from_chain` or `to_chain` when submitting quote or transaction
        requests.


        This endpoint does not require authentication.
      operationId: list_networks
      responses:
        '200':
          description: List of supported neworks
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NetworkInfo'
      security:
        - {}
components:
  schemas:
    NetworkInfo:
      type: object
      required:
        - slug
        - label
        - kind
        - aliases
        - is_testnet
      properties:
        aliases:
          type: array
          items:
            type: string
          description: |-
            Alternative strings accepted for this network.

            > **Note:** Any alias listed here will also parse correctly in
            > API requests wherever a network slug is expected.
          example:
            - ethereum
        chain_id:
          type:
            - string
            - 'null'
          description: >-
            Chain ID as a string (e.g. "1", "10",
            "5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp", "osmosis-1").
          example: '1'
        is_testnet:
          type: boolean
          description: Indicates whether this network is a testnet.
          example: false
        kind:
          $ref: '#/components/schemas/ChainKind'
          description: 'Network family: `eip155`, `solana`, or `cosmos`.'
        label:
          type: string
          description: Human-readable name for the network.
          example: Ethereum
        slug:
          type: string
          description: >-
            Canonical slug for this blockchain network.


            > **Note:** Use this value (or one of the `aliases`) as the
            `from_chain`

            > or `to_chain` parameter when submitting quote or transaction
            requests.
          example: eth
    ChainKind:
      type: string
      enum:
        - eip155
        - solana
        - cosmos
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````