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

# Check Bridge Status

> Poll the consensus and Circle attestation state of an active cross-chain bridge operation.

Retrieve the live status of an ongoing cross-chain bridge transfer, monitoring blockchain confirmations and Circle consensus attestations.

This endpoint expects a JSON body containing `txHash` with a full 66-character `0x...` transaction hash.


## OpenAPI

````yaml POST /v1/actions/bridge/status
openapi: 3.1.0
info:
  title: Aegis Secure API
  description: >-
    Zero-trust API for Developer-Controlled Wallets (DCW) and programmatic
    Policy Engine controls.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.aegisintent.xyz
    description: Production API Server
security: []
paths:
  /v1/actions/bridge/status:
    post:
      tags:
        - Actions API
      summary: Check Bridge Status
      description: >-
        Poll the consensus and Circle attestation state of an active cross-chain
        bridge operation.
      parameters:
        - name: X-Aegis-Email
          in: header
          required: true
          schema:
            type: string
          description: Agent email address
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - txHash
              properties:
                txHash:
                  type: string
                  pattern: ^0x[a-fA-F0-9]{64}$
                  description: Bridge transaction hash
      responses:
        '200':
          description: Attestation status retrieved
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  status:
                    type: object
      security:
        - BearerAuth: []
        - AegisEmail: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Provide raw API session token issued by `/v1/connect/complete`
    AegisEmail:
      type: apiKey
      in: header
      name: X-Aegis-Email
      description: Dual-header token holder identity confirmation

````