> For the complete documentation index, see [llms.txt](https://docs.ospree.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ospree.io/developers/blockchain-analytics/list-transactions-beta.md).

# List Transactions  (Beta)

{% hint style="warning" %}
This feature is currently in beta and should not be used in production. For further details please contact <support@ospree.io>.
{% endhint %}

<mark style="color:green;">`GET`</mark> `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: <mark style="color:orange;">`bitcoin`</mark> | True     |

Query Parameters

| Name          | Type    | Description                                                                                                                                                                                 | Required |
| ------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------- |
| `start_range` | string  | Starting point for specified data range. Example: <mark style="color:orange;">`2020-12-09`</mark>                                                                                           |          |
| `end_range`   | string  | Ending point for specified data range. Example: <mark style="color:orange;">`2023-12-09`</mark>                                                                                             |          |
| `page`        | integer | The current page number in pagination. Minimum: <mark style="color:orange;">`1`</mark>,  Default: <mark style="color:orange;">`1`</mark>                                                    |          |
| `size`        | integer | The size or number of records per page. Minimum: <mark style="color:orange;">`1`</mark>, Maximum: <mark style="color:orange;">`50`</mark>, Default: <mark style="color:orange;">`10`</mark> |          |
| `sort`        | string  | Criteria for result sorting. Example: <mark style="color:orange;">`-last_modified`</mark>                                                                                                   |          |

{% tabs %}
{% tab title="RESPONSE" %}

```json
{
  "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"
}
```

{% endtab %}
{% endtabs %}
