Look up team wallets associated with a given token address via x402-paid crypto intelligence endpoint.
What it does
This endpoint, hosted by Erudite Intelligence LLC at bridge.eruditepay.com, provides crypto data intelligence — specifically, it returns team wallet information for a given token contract address. You POST a JSON body containing a `token` field (a token address or symbol) and receive a JSON response with team wallet data.
Payment is handled via the x402 protocol (version 2). The endpoint accepts two payment options: USDC on Base (eip155:8453) at 0.01 USDC per call, or USDT on Tron (tron:728126428) at 0.01 USDT per call. Settlement is facilitated through the EruditePay x402 Bridge, which supports 20 blockchains and charges 0.5% per settlement. The Base payment option uses the Coinbase CDP facilitator.
Documentation is sparse — the provider's docs endpoint returns a 404, and the Bazaar schema embedded in the x402 challenge provides only a minimal example output (`{"success": true, "data": {}}`). The exact structure of the returned team wallet data is not documented. The endpoint is live and returns a proper 402 challenge, confirming it is operational.
Capabilities
Use cases
- —Identify wallets associated with a token's founding or development team
- —Due diligence on token projects by examining team wallet holdings
- —Automated on-chain research pipelines that need team wallet data per token
- —Agent-driven crypto analysis workflows requiring programmatic team wallet discovery
Fit
Best for
- —Crypto researchers needing team wallet data for a specific token
- —AI agents performing automated token due diligence
- —On-chain analytics pipelines that need team wallet identification
Not for
- —General-purpose blockchain transaction querying
- —Non-crypto use cases
- —Users who need detailed documentation before integrating (docs are sparse)
Quick start
curl -X POST https://bridge.eruditepay.com/v1/token/team-wallets \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"}'Example
Request
{
"token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a valid x402 challenge with a Bazaar schema, but documentation is effectively absent (docs endpoint 404s). The output example is a stub with an empty data object, so the actual response structure is unknown. Pricing is clear at $0.01 per call.
Warnings
- —No dedicated documentation available — /docs returns 404
- —Output schema example contains only an empty data object; actual response structure is undocumented
- —The exact fields returned in the 'data' object for team wallets are unknown
Citations
- —Endpoint returns x402 v2 challenge with USDC on Base (amount 10000 = $0.01) and USDT on Tron (amount 10000 = $0.01)https://bridge.eruditepay.com/v1/token/team-wallets
- —Provider is Erudite Intelligence LLC, FinCEN MSB registeredhttps://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —Coinbase CDP facilitator used for Base payment optionhttps://bridge.eruditepay.com/v1/token/team-wallets