Retrieves trade marks and annotations for a specific token on the chart.
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
symbol | string | Yes | The token symbol or address to fetch marks for. | PEPE |
from | integer | Yes | The start timestamp (Unix seconds) for the data range. | 1678886400 |
to | integer | Yes | The end timestamp (Unix seconds) for the data range. | 1678972800 |
resolution | string | Yes | The chart resolution/interval. | 60 |
UserID | string | Yes | The ID of the user requesting the marks. | user-123 |
features | string | No | JSON string containing pre-fetched feature data. | [{"wallets":["0x..."],"orderType":"Bought",...}] |
features
parameter to avoid additional API callsBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The token address (used as symbol internally) to filter trades for. Either symbol or walletAddress might be expected by the backend.
The start timestamp (Unix seconds) for the data range.
The end timestamp (Unix seconds) for the data range.
The chart resolution/interval.
1
, 5
, 15
, 60
, D
, W
, M
The ID of the user requesting the data.
A JSON string representing pre-fetched trade data. If provided, skips fetching from internal services.
Successful retrieval of chart marks data
Object containing arrays of mark properties for chart display.