get_bridge_transactions
Retrieve all transactions for a specific bridge within a date range. Filter results by source chain, address, or limit the number of transactions returned.
Instructions
GET /transactions/{id}
Get all transactions for a bridge within a date range.
Parameters:
id: bridge ID (can be retrieved from /bridges)
start_timestamp: start timestamp (Unix Timestamp) for date range
end_timestamp: end timestamp (Unix Timestamp) for date range
source_chain: filter by source chain (e.g., 'Polygon')
address: filter by address in format {chain}:{address}
limit: limit number of transactions returned (max 6000)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | No | ||
end_timestamp | No | ||
id | Yes | ||
limit | No | ||
source_chain | No | ||
start_timestamp | No |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Address"
},
"end_timestamp": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "End Timestamp"
},
"id": {
"title": "Id",
"type": "integer"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"source_chain": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Chain"
},
"start_timestamp": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Start Timestamp"
}
},
"required": [
"id"
],
"title": "get_bridge_transactionsArguments",
"type": "object"
}