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

# List Nova Bridge routes

> Lists the public Nova Bridge routes between Solana and Hyperliquid Perps.



## OpenAPI

````yaml /reference/public-openapi.json get /v1/bridge/routes
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/bridge/routes:
    get:
      tags:
        - Nova Bridge
      summary: List Nova Bridge routes
      description: >-
        Lists the public Nova Bridge routes between Solana and Hyperliquid
        Perps.
      operationId: listNovaBridgeRoutes
      responses:
        '200':
          description: Supported Solana and Hyperliquid Perps routes.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BridgeRoutesResponse'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  schemas:
    BridgeRoutesResponse:
      type: object
      required:
        - service
        - provider
        - network
        - routes
      properties:
        service:
          type: string
          example: nova-bridge
        provider:
          type: string
          example: relay
        network:
          type: string
          example: Relay-supported Nova chains
        supportedChains:
          type: array
          items:
            type: string
        excludedChains:
          type: array
          items:
            type: string
        appFeePolicy:
          type: object
          required:
            - applied
            - feeBps
          properties:
            applied:
              type: boolean
            feeBps:
              type: integer
              minimum: 0
          additionalProperties: false
        routes:
          type: array
          items:
            type: object
            required:
              - id
              - method
              - path
              - name
              - use
            properties:
              id:
                type: string
                enum:
                  - relay-bridge-quote
                  - solana-to-hyperliquid-perps
                  - hyperliquid-perps-to-solana
              method:
                type: string
                enum:
                  - POST
              path:
                type: string
              name:
                type: string
              use:
                type: string
              inputAsset:
                type: string
              inputAssets:
                type: array
                items:
                  type: string
              outputAsset:
                type: string
              outputAssets:
                type: array
                items:
                  type: string
              requestFields:
                type: array
                items:
                  type: string
            additionalProperties: false
      additionalProperties: false
    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'
    ServerError:
      description: The public API could not complete the request.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'

````