Skip to main content
POST
/
sse
/
prices
Stream real-time data for multiple assets
curl --request POST \
  --url https://streaming.dexpaprika.com/sse/prices \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "chain": "ethereum",
    "address": "0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D",
    "filter": {}
  }
]
'
{
  "address": "<string>",
  "chain": "<string>",
  "price": "<string>",
  "timestamp": "<string>",
  "timestamp_price": "<string>",
  "token_price": "<string>"
}

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.

Query Parameters

limit
integer

Maximum event count processing threshold before server-initiated connection teardown.

Required range: x >= 1

Body

application/json
Maximum array length: 25
chain
string
required
Example:

"ethereum"

address
string
required
Example:

"0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D"

method
enum<string>
required

t_p parameter format is deprecated and slated for future removal.

Available options:
token_price,
t_p
filter
object

Response

200 - text/event-stream

Multiplexed SSE stream successfully established.

Payload envelope mapping to the token_price event channel.

address
string

Token smart contract address.

chain
string

Cryptographic network runtime string identifier.

price
string

Asset evaluation calculation in USD.

timestamp
string

System transaction ingestion timestamp.

timestamp_price
string

Historical oracle evaluation layer execution timestamp.

token_price
string

Explicit alias structure referencing timestamp_price.