> ## Documentation Index
> Fetch the complete documentation index at: https://docs.polynode.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Reward Market Detail

> Get public Polymarket reward configuration for one condition ID.

Returns Polymarket's public reward-market configuration for a single condition ID. This describes market reward settings; it is not per-wallet earned LP rewards.

## Request

```
GET /v3/rewards/markets/{condition_id}
```

### Path parameters

| Parameter      | Type   | Description                |
| -------------- | ------ | -------------------------- |
| `condition_id` | string | `0x` + 64 hex condition ID |

### Query parameters

| Parameter     | Type    | Default | Description                        |
| ------------- | ------- | ------- | ---------------------------------- |
| `sponsored`   | boolean | `false` | Filter to sponsored reward markets |
| `next_cursor` | string  | --      | Pagination cursor                  |

## Example

```bash theme={null}
curl "https://api.polynode.dev/v3/rewards/markets/0x0001cb8c0b39aeb614ab9a43867595317f06ede9c011661513065c638fbbefda"
```

```json theme={null}
{
  "source": "reward_market_config_detail",
  "reward_semantics": "public Polymarket reward market configuration; this is not per-wallet earned LP rewards",
  "data": {
    "count": 1,
    "data": [
      {
        "condition_id": "0x0001cb8c0b39aeb614ab9a43867595317f06ede9c011661513065c638fbbefda",
        "native_daily_rate": 1,
        "rewards_config": [
          {
            "asset_address": "0xC011a7E12a19f7B1f670d46F03B03f3342E82DFB",
            "rate_per_day": 1,
            "start_date": "2026-02-17",
            "end_date": "2500-12-31"
          }
        ]
      }
    ]
  },
  "elapsed_ms": 236
}
```

## Response fields

| Field              | Type    | Description                              |
| ------------------ | ------- | ---------------------------------------- |
| `source`           | string  | Dataset label                            |
| `reward_semantics` | string  | Meaning note                             |
| `data`             | object  | Reward-market configuration response     |
| `elapsed_ms`       | integer | Server-side request time in milliseconds |

## Errors

| HTTP  | When                                    |
| ----- | --------------------------------------- |
| `400` | Invalid condition ID format             |
| `401` | Missing or invalid PolyNode API key     |
| `502` | Temporary rewards data provider failure |


## OpenAPI

````yaml GET /v3/rewards/markets/{condition_id}
openapi: 3.1.0
info:
  title: PolyNode API
  description: >-
    Real-time Polymarket data API with decoded mempool settlements, OHLCV
    candles, and full Polygon JSON-RPC proxy.
  contact:
    name: PolyNode
    url: https://polynode.dev
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.polynode.dev
    description: Production
security:
  - api_key: []
paths:
  /v3/rewards/markets/{condition_id}:
    get:
      tags:
        - V3 Rewards
      summary: Reward market detail
      description: Get public Polymarket reward-market configuration for a condition ID.
      operationId: v3_rewards_market
      parameters:
        - name: condition_id
          in: path
          required: true
          schema:
            type: string
          description: 0x-prefixed 32-byte condition ID
        - name: sponsored
          in: query
          schema:
            type: boolean
            default: false
          description: Filter to sponsored reward markets
        - name: next_cursor
          in: query
          schema:
            type: string
          description: Pagination cursor
      responses:
        '200':
          description: Reward-market configuration
        '400':
          description: Invalid condition ID
        '401':
          description: Unauthorized
        '502':
          description: Temporary rewards data provider failure
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````