v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
Wallet data endpoints

Retrieve transactions

Retrieves wallet transactions for the provided wallet address. The address may be any supported MPC address. Authentication with an API key is required.

get/user/{address}/transactions

Path parameters

addressstring required

The address to retrieve transaction information. Supported addresses include EVM, Solana and Bitcoin.

Query parameters

symbolsstring

Comma separated list of ticker symbols to query transaction data. For example an EVM address may be provided, which may specify multiple chains. The symbols=MATIC would indicate only Polygon data is requested. Omitting the symbols parameter will return data for all blockchains associated with the address.

cursorstring

The paging cursor used in combination with the limit parameter

forceRefreshnumber

Include a timestamp to indicate that caching should be avoided when rendering the response

Headers

Authorizationstring required

The JWT access token that authorizes the request

Response

Transaction data

cursorstring

Pointer to next page of paginated data

Example response

[
  {
    "data": [
      {
        "value": 10,
        "gas": 1,
        "method": "Transfer",
        "link": "https://path/to/scanner",
        "success": true,
        "type": "native",
        "imageUrl": "https://path/to/image",
        "symbol": "ETH",
        "description": "Transfer of 10 ETH to address 0x123",
        "from": {
          "address": "address1",
          "label": "label1",
          "link": "https://path/to/scanner"
        },
        "to": {
          "address": "address1",
          "label": "label1",
          "link": "https://path/to/scanner"
        }
      }
    ]
  }
]