Skip to main content
GET
/
v1
/
external
/
bridges
Returns all bridges whose on-chain contracts XFlow tracks across supported chains, sorted by volume.
curl --request GET \
  --url https://api.pulsy.app/v1/external/bridges \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "earliestSwapTimestamp": "2023-11-07T05:31:56Z",
    "latestSwapTimestamp": "2023-11-07T05:31:56Z",
    "allTimeSwapsCount": 123,
    "supportedChains": [
      "<string>"
    ],
    "url": "<string>",
    "icon": "<string>",
    "key": "<string>",
    "name": "<string>",
    "allTimeSwapsVolume": 123,
    "status": "Operational"
  }
]

Authorizations

Authorization
string
header
required

Basic auth required for external APIs. Example: "Authorization: Basic {base64EncodedPasswordString}"

Response

Success

earliestSwapTimestamp
string<date-time> | null

Timestamp of the earliest swap tracked for the bridge.

latestSwapTimestamp
string<date-time> | null

Timestamp of the latest swap tracked for the bridge.

allTimeSwapsCount
integer | null

Total number of swaps tracked for the bridge.

supportedChains
string[] | null

Chains whose bridge contracts are tracked by XFlow.

url
string | null

Official website or documentation URL of the bridge.

icon
string | null

Bridge icon URL.

key
string | null

Unique bridge key.

name
string | null

Human-readable bridge name.

allTimeSwapsVolume
number

All-time swap volume tracked for the bridge (in USD).

status
enum<string>

Current bridge status in XFlow.

Available options:
Operational,
Warning,
Malfunction