Agara
Home

Right-rail quick trades

Composed shelf: a fixed BTC 5-minute up/down market plus 0-2 sports cards (live preferred, upcoming as fallback).

GET
/api/v1/home/quick-trades

Query Parameters

exclude_event_idstring

Event ID to drop from the sports slot — typically the homepage sports hero, so it does not surface in two places.

Format: "uuid"
curl -X GET "https://app.agara.xyz/api/v1/home/quick-trades?exclude_event_id=497f6eca-6276-4993-bfeb-53cbbbba6f08"

Success

{
  "key": "quick_trades",
  "btc": {
    "type": "btc_updown_5m",
    "event_id": "string",
    "slug": "string",
    "title": "string",
    "image_url": "string",
    "ends_at": "string",
    "up_percent": 0,
    "down_percent": 0,
    "strike_price": 0,
    "volume": "string",
    "volume_24h": "string",
    "is_accepting_orders": true
  },
  "sports": [
    {
      "type": "sports_game",
      "event_id": "string",
      "slug": "string",
      "title": "string",
      "sport": "string",
      "league": "string",
      "home": {
        "name": "string",
        "abbreviation": "string",
        "logo_url": "string",
        "color": "string",
        "score": 0
      },
      "away": {
        "name": "string",
        "abbreviation": "string",
        "logo_url": "string",
        "color": "string",
        "score": 0
      },
      "status": {
        "type": "live",
        "label": "string"
      },
      "odds": {
        "home": {
          "label": "string",
          "short_label": "string",
          "price": 0,
          "percent": 0
        },
        "away": {
          "label": "string",
          "short_label": "string",
          "price": 0,
          "percent": 0
        },
        "draw": {
          "label": "string",
          "short_label": "string",
          "price": 0,
          "percent": 0
        }
      },
      "volume": "string",
      "market_count": 0,
      "is_accepting_orders": true
    }
  ]
}