Skip to Content

GET /api/v1/trending/watchlist

Trending names ranked by watchlist additions in the period.

Authentication: Optional

Cache: None

Query Parameters

ParameterTypeDefaultDescription
periodstring24hTime period: 24h or 7d
limitnumber20Results to return (1-100)
FieldTypeDescription
period_additionsnumberWatchlist additions in the period
total_watchersnumberTotal current watchers

Sample Request

curl "https://api.grails.app/api/v1/trending/watchlist?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_additions": 25, "total_watchers": 120 } } ], "meta": { "period": "7d", "type": "watchlist", "limit": 10 } }, "meta": { "timestamp": "2026-04-07T12:00:00.000Z", "version": "1.0.0" } }
Last updated on