Make your first API call in under 5 minutes. No SDK required.
Fetch live quotes for USDC to NGN (Nigeria Naira) across every integrated anchor.
curl -s "https://stellar-intel.vercel.app/api/rates/usdc-ngn?amount=100" | jqReturns one row per anchor with exchangeRate, fee, totalReceived, and the quote source.
Get the composite reputation score for a specific anchor.
curl -s "https://stellar-intel.vercel.app/api/reputation/cowrie" | jqReturns scorecards, fill rate, settle latency, and sample counts.
See how all anchors rank by composite reputation score.
curl -s "https://stellar-intel.vercel.app/api/reputation/leaderboard?corridor=usdc-ngn" | jqBuild, canonicalize, and sign an intent on the client, then submit it to the server.
# Build the intent, canonicalize, SHA-256, Ed25519-sign (client-side with Freighter).
# Then POST the signed envelope:
curl -sX POST https://stellar-intel.vercel.app/api/intent/offramp \
-H 'content-type: application/json' \
-d '{
"type": "offramp",
"sourceAsset": "USDC",
"destinationAsset": "NGN",
"amount": "100",
"sender": "GABC…",
"recipient": "GBDEST…"
}'On success, returns an unsigned Stellar transaction (XDR) and a quote ID.
Consume the public reputation scores endpoint (versioned, rate-limited).
curl -s "https://stellar-intel.vercel.app/v1/public/scores" | jq