get_bridge_day_stats
Retrieve a 24-hour token and address volume breakdown for a specific bridge, using a Unix timestamp and chain slug. Optional bridge ID can refine results.
Instructions
GET /bridgedaystats/{timestamp}/{chain}
Get a 24hr token and address volume breakdown for a bridge.
Parameters:
timestamp: Unix timestamp for the 24hr period starting at 00:00 UTC
chain: chain slug (e.g., 'Ethereum')
id: bridge ID (optional, can be retrieved from /bridges)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | ||
id | No | ||
timestamp | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"title": "Chain",
"type": "string"
},
"id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Id"
},
"timestamp": {
"title": "Timestamp",
"type": "integer"
}
},
"required": [
"timestamp",
"chain"
],
"title": "get_bridge_day_statsArguments",
"type": "object"
}