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

# Check Nova Bridge status

> Checks the current status for a Solana and Hyperliquid Perps route request.



## OpenAPI

````yaml /reference/public-openapi.json get /v1/bridge/hyperliquid-perps/status
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/hyperliquid-perps/status:
    get:
      tags:
        - Nova Bridge
      summary: Check Nova Bridge status
      description: >-
        Checks the current status for a Solana and Hyperliquid Perps route
        request.
      operationId: getNovaBridgeHyperliquidPerpsStatus
      parameters:
        - name: requestId
          in: query
          required: true
          schema:
            type: string
          description: Request id returned by a Nova Bridge route plan.
      responses:
        '200':
          description: Current route status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BridgeStatusResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  schemas:
    BridgeStatusResponse:
      type: object
      required:
        - success
        - service
        - requestId
        - status
      properties:
        success:
          type: boolean
          example: true
        service:
          type: string
          example: nova-bridge
        requestId:
          type: string
        status:
          type: string
          description: Normalized Relay status string for mobile decoders.
        credited:
          type: boolean
          description: Best-effort completion flag derived from Relay status.
        statusDetails:
          type: object
          additionalProperties: true
          properties:
            status:
              type: string
              enum:
                - waiting
                - depositing
                - pending
                - submitted
                - success
                - delayed
                - refund
                - failure
            inTxHashes:
              type: array
              items:
                type: string
            txHashes:
              type: array
              items:
                type: string
            originChainId:
              type: number
            destinationChainId:
              type: number
            updatedAt:
              type: number
      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:
    BadRequest:
      description: The request was invalid.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    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'

````