
Stridge API
Call Stridge with JSON over HTTPS from the language and tools your team already uses. Authentication, request patterns, and response envelopes stay consistent across resources.
const res = await fetch("https://api.stridge.com/v1/transfer/external/address", {
method: "POST",
headers: {
"X-API-Key": process.env.STRIDGE_API_KEY,
"Content-Type": "application/json",
},
body: JSON.stringify({
asset: "USDC",
network_symbol: "ethereum",
from_address: "<your-vault-address>",
to_address: "<recipient-address>",
amount: "100.50",
}),
});
const transfer = await res.json();Use a Gateway key for approved browser origins and an API key for server calls. Dashboard and internal services authenticate with their own bearer credentials.Read the authentication guide
Request
/**
* Server calls. Scope each key to the resources it needs and
* rotate it with a grace period.
*/
POST /v1/transfer/external/address HTTP/1.1
Host: api.stridge.com
X-API-Key: <your-api-key>
Accept: application/jsonX-API-Key authenticates POST /v1/transfer/external/address.
Create representative webhook events in the Dashboard, inspect delivery history, and verify signed requests in production. Failed deliveries retry automatically.