---
title: "Get Incentive Programs"
method: GET
path: "/v1/incentives"
tags: ["Incentives"]
---

# Get Incentive Programs

`GET /v1/incentives`

Get incentive programs for each market. This endpoint is public and requires no authentication.

## Query parameters

- `pageSize` integer
- `pageToken` string
- `symbols` string[]
- `orderBy` 'created_at'
- `orderDirection` 'asc' | 'desc'
- `statuses` string[]

## Response `200`

List of incentive programs grouped by market

- ListIncentivesResponse
  - `programs` IncentiveProgram[] — Incentive programs grouped by market
    - `marketSlug` string — Market identifier
    - `timePeriods` TimePeriod[] — Incentive time periods for this market
      - `programId` string — Unique identifier for this program period. Example: `nba_t1_ml_live`
      - `programType` string — Type of incentive program. Example: `liquidityProgram`
      - `start` string, date-time — ISO 8601 start timestamp for this period
      - `end` string, date-time — ISO 8601 end timestamp for this period. Omitted when the final end time is not known yet, such as an in-progress live game.
      - `rewardPool` number, double — Total reward pool for this period in USD
      - `status` 'active' | 'closed' | 'pending' — Current status of this period
      - `discountFactor` number, double, nullable — Discount factor for scoring — controls how much orders further from the best price are penalized
      - `targetSize` integer, nullable — Minimum aggregate resting order size on a side of the book for that side to qualify
      - `period` string — Reward period type. Example: `early`, `day_of`, `live`
      - `createdAt` string, date-time — ISO 8601 timestamp when the program was created
  - `nextPageToken` string — Pagination token for next page. Empty if no more results

---

[API](https://skmtc.net/polymarket/apis/portfolio-api.md) · [All operations](https://skmtc.net/polymarket/apis/portfolio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/polymarket/portfolio-api/revisions/150874842db1/schema)
