REI Crypto MCP Server

by 0xReisearch

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

NameRequiredDescriptionDefault
addressNo
end_timestampNo
idYes
limitNo
source_chainNo
start_timestampNo

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" }
ID: 0k74u5duux