GET /v1/routes
List available cross-chain routes with optional filters. Returns a paginated list.Query parameters
string
Filter by source token UUID. Returns only routes where the ad token matches.
string
Filter by destination token UUID. Returns only routes where the order token matches.
string
Filter by the source chain ID (e.g.,
"11155111" for Ethereum Sepolia, "1000001" for Stellar Testnet).string
Filter by the destination chain ID (e.g.,
"11155111" for Ethereum Sepolia).string
Filter by token symbol. Returns routes where either token matches the symbol (e.g.,
"USDC").string
Pagination cursor from a previous response’s
nextCursor field.number
default:"25"
Number of results per page. Between 1 and 100.
Response fields
Route[]
required
Array of route objects. See Route object fields below.
string | null
required
Cursor for the next page.
null when you have reached the last page.GET /v1/routes/:id
Retrieve full details for a single route by its UUID.Path parameters
string
required
UUID of the route to retrieve.
Route object fields
string
required
UUID of the route.
object
required
Arbitrary metadata associated with the route (may be an empty object).
string
required
ISO 8601 timestamp of when the route was registered.
string
required
ISO 8601 timestamp of the last update.
object
required
The source token for this route.
object
required
The destination token for this route. Same structure as
adToken.