GET
/
networks
/
{network}
/
pools
/
{pool_address}
/
transactions
curl --request GET \
  --url https://api.dexpaprika.com/networks/{network}/pools/{pool_address}/transactions
{
  "transactions": [
    {
      "id": "<string>",
      "log_index": 123,
      "transaction_index": 123,
      "pool_id": "<string>",
      "sender": "<string>",
      "recipient": 123,
      "token_0": "<string>",
      "token_1": "<string>",
      "amount_0": "<string>",
      "amount_1": "<string>",
      "created_at_block_number": 123
    }
  ],
  "page_info": {
    "limit": 123,
    "page": 123,
    "total_items": 123,
    "total_pages": 123
  }
}

Path Parameters

network
string
required

Network slug or ID (e.g., 'solana'). You can find the list of supported networks with their IDs here: /networks.

pool_address
string
required

Unique pool address or identifier. Such as 0xc7bbec68d12a0d1830360f8ec58fa599ba1b0e9b for WETH / USDT on ethereum.

Query Parameters

page
integer

Zero-based page index for paginated results.

Required range: 0 <= x <= 1000
limit
integer
default:10

Number of items to return per page (max 500).

Required range: 1 <= x <= 500
cursor
string

Cursor is a transaction ID used for pagination. If empty, the first set of results is returned.

Response

200
application/json
successful operation

Response for a request with page-based pagination.

transactions
object[]

Information about a transaction, including addresses, amounts, and block reference.

page_info
object