Agara
Home

Home trending shelf

Top events by 24-hour volume across all event types. Returns a discriminated card union — switch on type to render.

GET
/api/v1/home/trending

Query Parameters

limitinteger

Card count. Default 12, max 24.

Default: 12Minimum: 1Maximum: 24

tradable_onlyboolean

When true, returns only events that are currently accepting orders.

Default: false

sourcestring

Filter catalogue results to the AGARA exchange.

Value in: "AGARA"
curl -X GET "https://app.agara.xyz/api/v1/home/trending?limit=12&tradable_only=false&source=AGARA"

Success

{
  "key": "trending",
  "title": "string",
  "items": [
    {
      "event_id": "string",
      "slug": "string",
      "title": "string",
      "volume": "string",
      "volume_24h": "string",
      "market_count": 0,
      "primary_category": {
        "slug": "string",
        "label": "string"
      },
      "is_accepting_orders": true,
      "type": "trending_image",
      "image_url": "string",
      "outcome": {
        "label": "string",
        "short_label": "string",
        "percent": 0,
        "tone": "positive"
      }
    }
  ]
}