v1

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

Retrieves transaction data associated with blockchain accounts attached to a domain

Retrieves transaction data associated with requested domain. Paging is supported using the cursor query string parameter.

get/public/{domain}/transactions

Path parameters

domainstring required

The domain name to query profile data

Query parameters

symbolsstring

Comma separated list of ticker symbols to query transaction data

cursorstring

The paging cursor used in combination with the limit parameter

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"
        }
      }
    ]
  }
]