Stridge API Reference
The Stridge API is a plain REST interface for Universal Deposit Addresses (UDA) — one persistent deposit address per user that accepts funds on any supported chain and settles them to a fixed destination. With it you allocate UDAs, fetch indicative cross-chain quotes, list the assets Stridge can route, and track every settlement an address produces.
Everything here speaks JSON over HTTPS. There is no SDK to install — call the endpoints directly with curl, fetch, or your language's HTTP client. Each endpoint page ships runnable samples and a Try it console in the right rail.
Base URLs carry a /v1 prefix. Sandbox is https://api.stridge.dev/v1;
production is https://api.stridge.com/v1. See Environments.
Your first request (no key required)
The quote endpoint is public — you can run it right now without an API key. It returns an indicative price and route for moving an amount from one chain/asset to another:
curl "https://api.stridge.dev/v1/uda/quote?from_network_id=1&from_asset=0x0000000000000000000000000000000000000000&to_network_id=56&to_asset=0x55d398326f99059fF775485246999027B3197955&amount=1000000000000000000"Open Get a cross-chain quote and press Try it to send this exact request from your browser and inspect the live response. When you're ready to allocate addresses or read settlements, mint a key and read Authentication.