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

# List supported blockchain networks



## OpenAPI

````yaml /OPENAPI.yaml get /api/networks
openapi: 3.0.3
info:
  title: Redf Backend API
  version: 1.0.0
  description: >
    OpenAPI specification for the current HTTP backend exposed by the Phoenix
    router. The spec reflects the routes and controller behaviour currently
    implemented in `blockchain_app/lib/blockchain_app_web/router.ex`.
servers:
  - url: http://localhost:4000
    description: Local development
security: []
tags:
  - name: Health
  - name: Networks
  - name: Projects
  - name: Transactions
  - name: Widgets
paths:
  /api/networks:
    get:
      tags:
        - Networks
      summary: List supported blockchain networks
      operationId: listNetworks
      responses:
        '200':
          description: Networks list
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - networks
                properties:
                  status:
                    type: string
                    enum:
                      - ok
                  networks:
                    type: array
                    items:
                      $ref: '#/components/schemas/Network'
components:
  schemas:
    Network:
      type: object
      required:
        - id
        - name
      properties:
        id:
          type: integer
          example: 1
        name:
          type: string
          example: TON
        testnet:
          type: boolean
          nullable: true
          example: true

````