List Transactions (Beta)

GET api/v2/analytics/chains/{chain}/transactions

Retrieve the paginated list of transactions screening results based on the requesting business identity.

Path Parameters

Name
Type
Description
Required

chain

string

Blockchain network name. Example: bitcoin

True

Query Parameters

Name
Type
Description
Required

start_range

string

Starting point for specified data range. Example: 2020-12-09

end_range

string

Ending point for specified data range. Example: 2023-12-09

page

integer

The current page number in pagination. Minimum: 1, Default: 1

size

integer

The size or number of records per page. Minimum: 1, Maximum: 50, Default: 10

sort

string

Criteria for result sorting. Example: -last_modified

{
  "status": "success",
  "data": {
    "items": [
      {
        "risk_ratio": 50,
        "hash": "f24f0e170461545b20c464507113e590a007dd10df087628d8b1842976791d5c",
        "chain": "bitcoin",
        "in_usd": 35552.02552238,
        "symbol": "BTC",
        "last_modified": "2024-02-09T23:33:12.674530+00:00"
      },
      {
        "risk_ratio": 47,
        "hash": "0xc7fe329f0ad81a09276a61b3bc559a725971ffa4ca90b80037ef799006ab1797",
        "chain": "ethereum",
        "in_usd": 168.85432658,
        "symbol": "ETH",
        "last_modified": "2024-02-06T16:51:42.072321+00:00"
      },
      {
        "risk_ratio": 51,
        "hash": "7854c8b197ee8832ca2f21d281b6dc0710d0335e2746b30f63f750e9af716835",
        "chain": "bitcoin",
        "in_usd": 1486596.63241812,
        "symbol": "BTC",
        "last_modified": "2024-02-06T16:48:28.379959+00:00"
      },
      {
        "hash": "6e3e65f8d9ac10374dbf468d3a5e8ace9bbf40317848d9265124a6360dcdbe9b",
        "chain": "stellar",
        "in_usd": 0,
        "symbol": "XLM",
        "last_modified": "2024-02-02T13:46:55.594142+00:00"
      }
    ],
    "pagination": {
      "total": 4,
      "size": 10,
      "page": 1
    }
  },
  "message": "Null"
}

Last updated