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

# Get Network Tokens

> Get available tokens for a network.

Args:
    network_id: Network ID in format 'chain-network' (e.g., 'solana-mainnet-beta')
    search: Filter tokens by symbol or name

Example: GET /gateway/networks/solana-mainnet-beta/tokens?search=USDC



## OpenAPI

````yaml /api-reference/openapi.json get /gateway/networks/{network_id}/tokens
openapi: 3.1.0
info:
  title: Hummingbot API
  description: API for managing Hummingbot trading instances
  version: 1.0.1
servers:
  - url: http://localhost:8000
    description: Local development server
security: []
paths:
  /gateway/networks/{network_id}/tokens:
    get:
      tags:
        - Gateway
      summary: Get Network Tokens
      description: |-
        Get available tokens for a network.

        Args:
            network_id: Network ID in format 'chain-network' (e.g., 'solana-mainnet-beta')
            search: Filter tokens by symbol or name

        Example: GET /gateway/networks/solana-mainnet-beta/tokens?search=USDC
      operationId: get_network_tokens_gateway_networks__network_id__tokens_get
      parameters:
        - name: network_id
          in: path
          required: true
          schema:
            type: string
            title: Network Id
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Search
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Get Network Tokens Gateway Networks  Network Id 
                  Tokens Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBasic: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBasic:
      type: http
      scheme: basic

````