Skip to Content

GET /api/v1/trending/offers

Trending names ranked by offer activity in the period.

Authentication: Optional

Cache: None

Query Parameters

ParameterTypeDefaultDescription
periodstring24hTime period: 24h or 7d
limitnumber20Results to return (1-100)
FieldTypeDescription
period_offersnumberOffers received in the period
highest_offerstringHighest offer amount in wei
avg_offerstringAverage offer amount in wei
unique_biddersnumberDistinct bidder addresses

Sample Request

curl "https://api.grails.app/api/v1/trending/offers?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_offers": 8, "highest_offer": "200000000000000000", "avg_offer": "120000000000000000", "unique_bidders": 6 } } ], "meta": { "period": "24h", "type": "offers", "limit": 10 } }, "meta": { "timestamp": "2026-04-07T12:00:00.000Z", "version": "1.0.0" } }
Last updated on