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

# Search tokens

> Searches tokens by symbol, name, or mint address.



## OpenAPI

````yaml /reference/public-openapi.json get /v1/data/tokens/search
openapi: 3.1.0
info:
  title: Nova Security, Bridge, Token & Wallet API
  version: '2026-05-27'
  description: >-
    Open public APIs for Nova security checks, Relay-backed bridge route quotes,
    and on-chain intelligence.
servers:
  - url: https://api-nova.tech
    description: Public API
security: []
tags:
  - name: Security Model
    description: >-
      Risk checks for tokens, wallets, dapps, transactions, permissions, and
      addresses.
  - name: Nova Bridge
    description: >-
      Build wallet-ready Relay route quotes. Wallet approvals, signing, and
      broadcast stay local.
  - name: Token Data
    description: Search, profiles, prices, charts, and trending token data.
  - name: Wallet Data
    description: Public wallet overview, holdings, trades, and activity.
  - name: Trader Data
    description: Leaderboards, trade feeds, and token signals.
  - name: Monitoring
    description: Metadata-only public API request stats and scrapeable metrics.
paths:
  /v1/data/tokens/search:
    get:
      tags:
        - Token Data
      summary: Search tokens
      description: Searches tokens by symbol, name, or mint address.
      operationId: searchTokens
      parameters:
        - name: query
          in: query
          required: true
          schema:
            type: string
            minLength: 1
          description: Search text.
        - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: Matching tokens.
          content:
            application/json:
              schema:
                type: object
                required:
                  - tokens
                properties:
                  tokens:
                    type: array
                    items:
                      $ref: '#/components/schemas/TokenSummary'
                additionalProperties: false
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  parameters:
    Limit:
      name: limit
      in: query
      required: false
      schema:
        type: integer
        minimum: 1
        maximum: 100
        default: 25
      description: Maximum number of records to return.
  schemas:
    TokenSummary:
      type: object
      required:
        - mint
        - symbol
        - name
      properties:
        mint:
          type: string
          example: So11111111111111111111111111111111111111112
        symbol:
          type: string
          example: SOL
        name:
          type: string
          example: Solana
        logoUrl:
          type: string
          format: uri
        priceUsd:
          type: number
        marketCapUsd:
          type: number
        volume24hUsd:
          type: number
        change24hPct:
          type: number
        riskLevel:
          $ref: '#/components/schemas/RiskLevel'
      additionalProperties: false
    RiskLevel:
      type: string
      enum:
        - low
        - medium
        - high
        - critical
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              example: RATE_LIMITED
            message:
              type: string
              example: Too many requests. Try again later.
            requestId:
              type: string
          additionalProperties: false
      additionalProperties: false
  responses:
    RateLimited:
      description: The request exceeded an IP, endpoint, or capability quota.
      headers:
        Retry-After:
          schema:
            type: integer
          description: Seconds to wait before retrying.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'

````