Skip to main content
GET
/
sse
/
prices
Stream real-time data for a single asset
curl --request GET \
  --url https://streaming.dexpaprika.com/sse/prices
{
  "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

method
enum<string>
required

Streaming method targeting specific data resolutions. t_p is legacy.

Available options:
token_price,
t_p
address
string
required

Target token smart contract address.

chain
string
required

Target blockchain network identifier (e.g., ethereum, solana).

limit
integer

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

Required range: x >= 1

Response

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.