Retrieve token unlock/vesting schedules via x402-paid crypto data intelligence endpoint.
What it does
The `/v1/token/unlock-schedule` endpoint on EruditePay's Bridge returns unlock and vesting schedule data for a given cryptocurrency token. It accepts a POST request with a JSON body containing a `token` field (token address or symbol) and returns structured schedule data. The endpoint is gated behind the x402 payment protocol (version 2), requiring per-call payment before data is served.
Pricing is $0.01 per request, payable in either USDC on Base (eip155:8453) or USDT on Tron (tron:728126428). The payment amount of 10,000 base units corresponds to $0.01 given 6-decimal stablecoins. Payments are facilitated through the EruditePay Bridge, which supports 20 blockchains and is operated by Erudite Intelligence LLC, a FinCEN-registered MSB (BSA ID 31000324258137). The facilitator used for Base USDC payments is Coinbase's CDP x402 endpoint.
The endpoint is live and returns a proper x402 challenge on unauthenticated requests. However, documentation is sparse — the output schema only provides a generic `{"success": true, "data": {}}` example without detailing the actual fields returned in the unlock schedule. No OpenAPI spec or dedicated docs page is available for this specific data endpoint (the `/docs` path returns a 404). The provider's landing page describes EruditePay as a payment facilitator, with this endpoint being a separate data-intelligence offering built on top of that infrastructure.
Capabilities
Use cases
- —Querying upcoming token unlock events for investment research
- —Integrating token vesting data into portfolio dashboards
- —Automated monitoring of token supply inflation from scheduled unlocks
- —Agent-driven analysis of tokenomics and supply schedules
Fit
Best for
- —Crypto researchers needing programmatic access to unlock schedules
- —Trading bots that factor token unlocks into strategy
- —DeFi dashboards displaying vesting timelines
Not for
- —Non-crypto data needs
- —Users who need free or bulk-rate token data (each call costs $0.01)
- —Detailed historical vesting transaction lookups (output schema unclear)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/token/unlock-schedule \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"token": "0x0000000000000000000000000000000000000000"}'Example
Request
{
"token": "0x0000000000000000000000000000000000000000"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live with a valid x402 challenge and a basic input/output schema, but the output example is effectively empty ({"data": {}}), there is no OpenAPI spec, and no dedicated documentation exists for this data endpoint. The actual fields returned in the unlock schedule are unknown.
Warnings
- —Output schema example is a stub — actual response fields for unlock schedule data are undocumented.
- —No OpenAPI specification or dedicated docs page available (/docs returns 404).
- —The provider's main site describes a payment facilitator; this data endpoint appears to be a secondary offering with minimal documentation.
Citations
- —Endpoint returns x402 v2 challenge with 10,000 base-unit USDC on Base or USDT on Tronhttps://bridge.eruditepay.com/v1/token/unlock-schedule
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered (BSA ID 31000324258137)https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —Coinbase CDP is used as the facilitator for Base USDC paymentshttps://bridge.eruditepay.com/v1/token/unlock-schedule