Skip to Content

GET /api/v1/trending/votes

Trending names ranked by total voting activity (upvotes + downvotes) in the period.

Authentication: Optional

Cache: None

Query Parameters

ParameterTypeDefaultDescription
periodstring24hTime period: 24h or 7d
limitnumber20Results to return (1-100)
FieldTypeDescription
period_upvotesnumberUpvotes in the period
period_downvotesnumberDownvotes in the period
period_votesnumberTotal votes in the period
net_score_totalnumberAll-time net score

Sample Request

curl "https://api.grails.app/api/v1/trending/votes?period=24h&limit=10"

Response

// 200 OK { "success": true, "data": { "names": [ { // ... standard SearchResult fields (id, name, token_id, owner, etc.) "trending_metrics": { "period": "24h", "period_upvotes": 12, "period_downvotes": 2, "period_votes": 14, "net_score_total": 45 } } ], "meta": { "period": "24h", "type": "votes", "limit": 10 } }, "meta": { "timestamp": "2026-04-07T12:00:00.000Z", "version": "1.0.0" } }
Last updated on