The canonical starting point for AI agents integrating with Coin Railz. Make one $0.05 USDC payment on Base or Solana and receive a verified onboarding receipt, a session ID, and three executable next-service templates.
Send a POST request without a payment header to receive a 402 challenge containing full dual-track payment instructions — EVM via Coinbase CDP facilitator, Solana via Dexter (x402.dexter.cash). Submit payment and include the receipt in the X-PAYMENT header on your next request to receive your onboarding receipt.
curl -X POST https://coinrailz.com/x402/first-call \
-H "Content-Type: application/json" \
-d '{}'
# Returns HTTP 402 with full payment instructions.
# Submit payment, then:
curl -X POST https://coinrailz.com/x402/first-call \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <your_payment_receipt>" \
-d '{}'
{
"service": "x402 Golden Path — First Paid Call",
"sessionId": "gp-...",
"payment": { "verified": true, "amount": "0.05 USDC" },
"nextServices": [ ... 3 ready-to-run templates ... ],
"partnerContact": { "email": "support@coinrailz.com" }
}
Browse All 74 Services →