API

HyBridge offers two complementary integration paths:

  1. A public REST API for programmatic access.

  2. A no-code embeddable widget for instant, front-end onboarding.

Both routes expose the same bridge liquidity and swap logic used in the HyBridge UI, so you can pick whichever best suits your product.


HyBridge REST API

Base URL

https://api.hybridge.xyz

Authentication – All current endpoints are public; no API-key is required as of now. Format – Requests and responses are JSON.


1.1 Endpoint Summary

Category
Method + Path
Purpose

Bridge

GET /chains

List every supported network.

GET /tokens/{chain}

List bridgeable tokens on a specific chain.

POST /bridge

Kick off a cross-chain transfer.

GET /status/{orderId}

Poll the real-time state of a specific bridge order.

Swap

POST /evm.swap

Return the best HyperEVM route between two tokens.

Stats

GET /stats

Global stats of HyBridge: totalSwapCount, uniqueFromAddressCount, totalValue, avgTime

User

POST /user.getPoints

Fetch the calling wallet’s points for a specific season.


Typical Workflows

Discover & Quote

# Which networks are live?
curl https://api.hybridge.xyz/chains

# Which tokens can I bridge on Arbitrum?
curl https://api.hybridge.xyz/tokens/arbitrum

Example: Initiate a Bridge

curl -X POST https://api.hybridge.xyz/bridge \
  -H "Content-Type: application/json" \
  -d '{
    "fromAddress": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
    "toAddress":   "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
    "fromChain":   "ethereum",
    "toChain":     "hyperliquid",
    "fromToken":   "USDC",
    "toToken":     "HYPE",
    "amount":      "100.5"
  }'

Last updated