Filter and retrieve transactions processed by a specific bridge or protocol. This endpoint allows developers to analyze cross-chain activity at the protocol level.
Key Features
- Search by protocol name to identify transactions handled by a specific bridge.
- Supports filtering by date range, asset type, or transaction status.
- Enables protocol-level monitoring and analytics.
Use Cases
- Analyze transaction volumes and performance for a specific protocol.
- Build dashboards for bridge operators or protocol users.
- Monitor protocol-level issues or delays.
Sample Endpoint
URL: GET /api/transactions/protocol/{protocol}
Example Request:
GET https://api.range.org/transactions/protocol/BridgeX?limit=10
Example Response:
[
{
"hash": "0x1234abcd5678efgh",
"status": "completed",
"source_chain": "Ethereum",
"destination_chain": "Avalanche",
"amount": "200",
"asset": "WBTC",
"timestamp": "2025-01-25T14:00:00Z",
"protocol": "BridgeX"
},
{
"hash": "0x7890ijkl9012mnop",
"status": "completed",
"source_chain": "BSC",
"destination_chain": "Polygon",
"amount": "50",
"asset": "USDT",
"timestamp": "2025-01-27T16:45:00Z",
"protocol": "BridgeX"
}
]