This endpoint allows users to track all cross-chain transfers of a specific asset, regardless of the network or bridge used. It's ideal for following the flow of assets like USDT, ETH, or BTC across blockchains.
Key Features
- Search all transactions involving a specific asset.
- Includes asset amounts, source/destination chains, and timestamps.
- Supports filtering by date, protocol, or status.
Use Cases
- Analyzing the movement of a specific asset across chains.
- Providing real-time updates for asset flow in dApps or dashboards.
- Asset-specific compliance tracking or reporting.
Sample Endpoint
URL: GET /api/transactions/asset/{asset}
Example Request:
GET https://api.range.org/transactions/asset/USDC?date_start=2025-01-01
Example Response:
[
{
"hash": "0x1234abcd5678efgh",
"status": "completed",
"source_chain": "Ethereum",
"destination_chain": "Polygon",
"amount": "500",
"asset": "USDC",
"timestamp": "2025-01-28T10:45:00Z",
"protocol": "BridgeX"
},
{
"hash": "0x5678ijkl9012mnop",
"status": "pending",
"source_chain": "Avalanche",
"destination_chain": "Ethereum",
"amount": "750",
"asset": "USDC",
"timestamp": "2025-01-27T18:30:00Z",
"protocol": "BridgeY"
}
]