Get copy-trading target wallets for a given crypto address via x402 micropayment on Base or Tron.
What it does
The `/v1/base/wallet/copy-targets` endpoint, operated by Erudite Intelligence LLC, provides crypto data intelligence — specifically, it returns copy-trading target information for a given wallet or contract address. The endpoint is pay-per-call via the x402 protocol (version 2), accepting payment of $0.01 (10,000 base units of USDC on Base, or 10,000 base units of USDT on Tron) per request.
To use the endpoint, send a POST request with a JSON body containing an `address` field (a wallet or contract address). The response is JSON with a `success` boolean and a `data` object. The exact structure of the returned data object is not documented beyond the example stub `{}`, so the richness of the response is unclear. The endpoint is live and returns a proper 402 challenge when called without payment.
The endpoint is hosted on the EruditePay Bridge, an x402 payment facilitator that supports 20 blockchains. The facilitator is registered as a FinCEN MSB (BSA ID 31000324258137) and operates non-custodially. Payment is settled via Coinbase CDP on Base or directly on Tron. Note that documentation for this specific endpoint is sparse — the provider's docs URL returns a 404, and the output schema only shows a generic example. The actual fields returned in the `data` object are unknown.
Capabilities
Use cases
- —Identify wallets worth copy-trading based on a given address
- —Build automated copy-trading bots that discover profitable wallets to follow
- —Integrate on-chain wallet intelligence into crypto dashboards
- —Screen wallet addresses for copy-trading suitability before allocating funds
Fit
Best for
- —Crypto trading bots needing programmatic copy-trade target discovery
- —On-chain analytics platforms adding copy-trading features
- —Agents that need pay-per-call wallet intelligence without API key signup
Not for
- —Non-crypto use cases or general-purpose data queries
- —Users needing detailed documentation or guaranteed response schemas before integrating
- —High-volume batch analysis where per-call costs would accumulate significantly
Quick start
curl -X POST https://bridge.eruditepay.com/v1/base/wallet/copy-targets \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <x402_payment_header>" \
-d '{"address": "0x1234567890abcdef1234567890abcdef12345678"}'Example
Request
{
"address": "0x1234567890abcdef1234567890abcdef12345678"
}Response
{
"data": {},
"success": true
}Endpoint
Quality
The endpoint is live and returns a valid x402 challenge with a clear schema for input, but the output is essentially undocumented (example data is an empty object). The provider's /docs endpoint returns 404, and there is no OpenAPI spec. The description 'Crypto data intelligence' and endpoint path 'copy-targets' allow reasonable inference of purpose, but actual response fields are unknown.
Warnings
- —Output data structure is undocumented — the example response shows an empty data object
- —Provider docs URL (https://docs.eruditepay.com/) was not crawled and the /docs path on the bridge returns 404
- —The exact fields and depth of copy-target intelligence returned are unknown
- —No OpenAPI specification available
Citations
- —Endpoint accepts USDC on Base (10,000 base units = $0.01) and USDT on Tron (10,000 base units = $0.01)https://bridge.eruditepay.com/v1/base/wallet/copy-targets
- —Provider is Erudite Intelligence LLC, FinCEN MSB registered with BSA ID 31000324258137https://bridge.eruditepay.com
- —EruditePay Bridge supports 20 blockchains and charges 0.5% per settlementhttps://bridge.eruditepay.com
- —x402 facilitator is Coinbase CDP (https://api.cdp.coinbase.com/platform/v2/x402)https://bridge.eruditepay.com/v1/base/wallet/copy-targets
- —Endpoint description is 'Crypto data intelligence' and accepts POST with a wallet addresshttps://bridge.eruditepay.com/v1/base/wallet/copy-targets