Rebatify

For AI agents · x402

x402 API — pay-per-call exchange data

The same data that powers Rebatify, sold to AI agents pay-per-call in USDC over Coinbase’s x402 standard. No account, no API key — your agent pays $1.00 USDC on Base per call and gets structured JSON back.

Price
$1.00 / call
Network
Base (eip155:8453)
Asset
USDC
Endpoints
14

How it works

Every endpoint speaks x402. Hit it with no payment and you get 402 Payment Required plus a challenge; an x402-capable client (x402-fetch, Base MCP, or any Bazaar consumer) signs a one-shot USDC authorization and retries. The facilitator settles on-chain and pays the gas — your agent never needs ETH, just USDC. Funds land directly in our receiving wallet; we never custody or hold a key for this.

Most endpoints accept filters so you buy only the slice you need, and a fields array to return only the columns you want. The full machine-readable menu (with each endpoint’s input schema) is free at /api/x402, and every endpoint is discoverable in the Coinbase Bazaar (merchant 0xA9BD0171cf284F338a1925E352DB4a7D4CAed0b8).

Endpoints

Pre-IPO price gaps

Live cross-exchange price gaps for pre-IPO equity perps, ranked by basis-point spread — time-sensitive arbitrage data.

POST /api/x402/spacex-gapSpaceX cross-exchange price gaps$1.00
POST /api/x402/openai-gapOpenAI cross-exchange price gaps$1.00
POST /api/x402/anthropic-gapAnthropic cross-exchange price gaps$1.00

Exchange data

The full exchange directory plus rebate/fee answers. Filter by category, id or min-payback; request only the fields you need.

POST /api/x402/exchangesFull exchange directory (~40 venues): fees, rebate %, loss coverage, KYC, signup links$1.00
POST /api/x402/exchangeA single exchange by id$1.00
POST /api/x402/best-rebateExchanges ranked by rebate / payback %$1.00
POST /api/x402/rebate-routeBest rebate routing for a given monthly volume$1.00
POST /api/x402/fee-savingsAnnual fee savings vs. your current exchange$1.00
POST /api/x402/signup-stackStacked signup-bonus plan for a given starting capital$1.00

Events & promotions

Exchange events classified by category and by exchange, with counts. Filter by exchange, category, status or end window.

POST /api/x402/eventsFull events catalog (competitions, airdrops, new-user, deposit, vip, …)$1.00
POST /api/x402/competitionsActive trading competitions with prize pools$1.00
POST /api/x402/live-airdropsActive airdrop events$1.00
POST /api/x402/ending-soonActive events ending within N days$1.00
POST /api/x402/sns-eventsSNS giveaways (like / RT / reply / tag to win)$1.00

Call it

# 1. The free catalog (no payment) — list every endpoint + its input schema
curl https://www.rebatify.net/api/x402

# 2. Call a paid endpoint with any x402 client (x402-fetch, Base MCP, …).
#    Without payment you get HTTP 402 + a PAYMENT-REQUIRED challenge;
#    your client signs a USDC payment and retries automatically:
import { wrapFetchWithPayment } from '@x402/fetch';
const pay = wrapFetchWithPayment(fetch, client); // client holds your wallet
const res = await pay('https://www.rebatify.net/api/x402/best-rebate', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({ limit: 5, fields: ['payback', 'takerFee'] }),
});
const data = await res.json(); // top rebate exchanges — paid $1 USDC on Base

Full runnable client + examples on GitHub: github.com/NakOh/rebatify-x402

Custom data or volume?

Need a bespoke feed, a higher-volume arrangement, or a bearer-token integration instead of pay-per-call? DM the operator at @rebatify_real on Telegram.