API
HyBridge offers two complementary integration paths:
A public REST API for programmatic access.
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
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
Example: Initiate a Bridge
Last updated