Skip to Content

GET /api/v1/trending/sales

Trending names ranked by sales activity in the period.

Authentication: Optional

Cache: None

Query Parameters

ParameterTypeDefaultDescription
periodstring24hTime period: 24h or 7d
limitnumber20Results to return (1-100)
FieldTypeDescription
period_salesnumberNumber of sales in the period
period_volumestringTotal sales volume in wei
avg_pricestringAverage sale price in wei
max_pricestringHighest sale price in wei
min_pricestringLowest sale price in wei

Sample Request

curl "https://api.grails.app/api/v1/trending/sales?period=7d&limit=10"

Response

// 200 OK { "success": true, "data": { "names": [ { // ... standard SearchResult fields (id, name, token_id, owner, etc.) "trending_metrics": { "period": "7d", "period_sales": 3, "period_volume": "500000000000000000", "avg_price": "166666666666666666", "max_price": "250000000000000000", "min_price": "100000000000000000" } } ], "meta": { "period": "7d", "type": "sales", "limit": 10 } }, "meta": { "timestamp": "2026-04-07T12:00:00.000Z", "version": "1.0.0" } }
Last updated on