Retrieve all cross-chain transactions associated with a specific wallet address. This endpoint is perfect for providing users with a full history of their cross-chain activity.

Key Features

  • Access a comprehensive list of transactions by wallet address.
  • Filter by status, date range, or asset type for refined results.
  • View both incoming and outgoing transactions.

Use Cases

  • Wallet tracking to build user-facing dashboards.
  • Analyzing user activity across multiple chains and bridges.
  • Supporting compliance by generating detailed transaction histories.

Sample Endpoint

URL: GET /api/transactions/address/{address}

Example Request:

GET https://api.range.org/transactions/address/0xabc123?status=completed&date_start=2025-01-01

Example Response:

[
  {
    "hash": "0x7890ijkl1234mnop",
    "status": "completed",
    "source_chain": "Ethereum",
    "destination_chain": "Avalanche",
    "amount": "1000",
    "asset": "DAI",
    "timestamp": "2025-01-15T08:30:00Z",
    "protocol": "BridgeY"
  },
  {
    "hash": "0x4567qrst8901uvwx",
    "status": "pending",
    "source_chain": "BSC",
    "destination_chain": "Polygon",
    "amount": "250",
    "asset": "ETH",
    "timestamp": "2025-01-20T12:15:00Z",
    "protocol": "BridgeZ"
  }
]