Agara

Get LP-incentive opportunities and your standing

GET
/trade/v1/lp-incentives

Authorization

Authorization
Required
Bearer <token>

Personal access token issued from the web app's Settings → API tokens page. Send as Authorization: Bearer agt_….

In: header

Scope: portfolio:read

Query Parameters

categorystring

Active root-category slug.

searchstring

Case-insensitive literal substring matched against market question and event title.

sort_bystring

Market field used for explicit sorting.

Value in: "market" | "close_time" | "max_spread" | "min_shares" | "reward_pool" | "my_share" | "projected_payout"

sort_orderstring

Sort direction. Defaults to desc when sort_by is supplied.

Value in: "asc" | "desc"
curl -X GET "https://app.agara.xyz/trade/v1/lp-incentives?category=string&search=string&sort_by=market&sort_order=asc"

Active and upcoming LP-incentive opportunities. Anonymous callers get the same markets with zeroed personal standing.

{
  "eligible": true,
  "epoch_date": "string",
  "epoch_ends_at": "string",
  "markets": [
    {
      "close_time": "string",
      "epoch_score": 0.1,
      "event_slug": "string",
      "event_title": "string",
      "has_traded": true,
      "logo_url": "string",
      "market_id": "string",
      "market_total_score": 0.1,
      "max_spread_micro": 0,
      "min_shares_micro": "string",
      "phase": "ACTIVE",
      "pool_micro": "string",
      "projected_payout_micro": "string",
      "question": "string"
    }
  ]
}