get_bridge_volume
Retrieve historical bridge volumes for a specific chain or across all chains, optionally filtered by bridge ID, using detailed and accessible crypto data from REI Crypto MCP Server.
Instructions
GET /bridgevolume/{chain}
Get historical volumes for a bridge, chain, or bridge on a particular chain.
Parameters:
chain: chain slug (e.g., 'Ethereum') or 'all' for volume on all chains
id: bridge ID (optional, can be retrieved from /bridges)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | ||
id | No |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"title": "Chain",
"type": "string"
},
"id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Id"
}
},
"required": [
"chain"
],
"title": "get_bridge_volumeArguments",
"type": "object"
}