Token of the Week
GET
/gateway/v1/heatscore/token-of-weekReturns the token-of-week project signal cards with latest price, price-change percentages, dimension scores, compact signals, and AI summaries. Supports `limit`/`offset` pagination.
Query Parameters
limitinteger
Results per page
Example:
20offsetinteger
Pagination offset
Example:
0Token of the Week
const options = {method: 'GET'};
fetch('https://api.asksurf.ai/gateway/v1/heatscore/token-of-week?limit=20&offset=0', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));OK
{
"$schema": "https://example.com/schemas/DataResponseSignalProject.json",
"data": [
{
"ai_summary": {},
"baseline": 123,
"change_percent": 123,
"change_vs_previous_percent": 123,
"computed_hour": 123,
"core_state": {
"driver": "<string>",
"priority": 123,
"reason": "<string>",
"state": "<string>",
"state_type": "<string>",
"strength": "<string>"
},
"driver": "<string>",
"evidence_score": 123,
"heat_dimensions": {
"derivative": 123,
"derivative_components": [
{
"metric": "<string>",
"score": 123,
"used": true,
"weight": 123
}
],
"flow": 123,
"movement": 123,
"social": 123
},
"heat_score": 123,
"heat_score_by_range": {},
"heat_score_change_vs_previous_percent_by_range": {},
"heat_score_previous_by_range": {},
"liquidation_long_24h": 123,
"liquidation_long_short_ratio_24h": 123,
"liquidation_short_24h": 123,
"logo": "<string>",
"market_relevance": 123,
"metric": "<string>",
"name": "<string>",
"open_interest": 123,
"points_used": 123,
"previous_value": 123,
"price": 123,
"price_change_percent": {
"1h": 123,
"24h": 123,
"7d": 123
},
"project_id": "<string>",
"project_slug": "<string>",
"rank": 123,
"score": 123,
"signed_z": 123,
"symbol": "<string>",
"time_range": "<string>",
"token_id": "<string>",
"token_signals": {},
"updated_at": 123,
"value": 123,
"volume_24h": 123,
"volume_24h_change_percent": 123
}
],
"meta": {
"cached": true,
"credits_used": 123,
"empty_reason": "<string>",
"has_more": true,
"limit": 123,
"offset": 123,
"total": 123,
"watermark": 123
}
}