Skip to main content
POST
/
reserves
/
stream
Subscribe to multiple reserves streaming
curl --request POST \
  --url https://api.example.com/reserves/stream \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "chain": "ethereum",
    "address": "0x...",
    "method": "pool_reserves"
  }
]
'
{
  "chain": "<string>",
  "pool_id": "<string>",
  "block": 123,
  "previous_block": 123,
  "tokens": [
    {
      "token_id": "<string>",
      "reserve": "<string>",
      "delta": "<string>",
      "price_usd": 123,
      "reserve_usd": 123,
      "delta_usd": 123
    }
  ],
  "total_reserve_usd": 123,
  "total_delta_usd": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.dexpaprika.com/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
chain
string
required
Example:

"ethereum"

address
string
required
Example:

"0x..."

method
enum<string>
required
Available options:
pool_reserves,
token_reserves

Response

200 - text/event-stream

SSE connection established

Payload for reserve_update event

chain
string
pool_id
string
block
integer
previous_block
integer
tokens
object[]
total_reserve_usd
number
total_delta_usd
number