> ## 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.

# Wallet Credit Series

> Time-bucketed earnings series per credit type for one wallet.

Bucketed earnings over time for one wallet. Use `fill=zero` for continuous buckets when charting.

## Credit types

Every credits endpoint accepts these values in `type`/`types`:

| Value             | Program                                       |
| ----------------- | --------------------------------------------- |
| `reward`          | [Liquidity rewards](/credits/rewards)         |
| `yield`           | [Yield on balances](/credits/yield)           |
| `maker_rebate`    | [Maker rebates](/credits/maker-rebates)       |
| `taker_rebate`    | [Taker rebates](/credits/taker-rebates)       |
| `referral_reward` | [Referral rewards](/credits/referral-rewards) |

`types` accepts a comma-separated set (`types=maker_rebate,taker_rebate`) or `all`.

## Example

Weekly rebate earnings, chart-ready:

```bash theme={null}
curl "https://api.polynode.dev/v3/wallets/0x204f72f35326db932158cba6adff0b9a1da95e14/credits/series?types=maker_rebate,taker_rebate&interval=week&fill=zero" \
  -H "x-api-key: $POLYNODE_API_KEY"
```


## OpenAPI

````yaml GET /v3/wallets/{addr}/credits/series
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/wallets/{addr}/credits/series:
    get:
      tags:
        - Credits
      summary: Wallet Credit Series
      description: Time-bucketed earnings series per credit type for one wallet.
      operationId: credits_wallet_series
      parameters:
        - name: addr
          in: path
          required: true
          description: Wallet (proxy) address.
          schema:
            type: string
        - name: types
          in: query
          required: false
          description: >-
            Comma-separated set of credit types (One of `reward`, `yield`,
            `maker_rebate`, `taker_rebate`, `referral_reward`), or `all` for
            every type.
          schema:
            type: string
        - name: interval
          in: query
          required: false
          description: '`hour`, `day` (default), `week`, or `month`.'
          schema:
            type: string
        - name: fill
          in: query
          required: false
          description: '`zero` to emit empty buckets, `skip` (default) to omit them.'
          schema:
            type: string
        - name: start_ts
          in: query
          required: false
          description: Unix seconds start bound (inclusive).
          schema:
            type: integer
        - name: end_ts
          in: query
          required: false
          description: Unix seconds end bound (inclusive).
          schema:
            type: integer
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                wallet: '0x204f72f35326db932158cba6adff0b9a1da95e14'
                interval: day
                series:
                  - bucket: 1783641600
                    maker_rebate:
                      amount: '3857.120000'
                      count: 1
                  - bucket: 1783728000
                    maker_rebate:
                      amount: '3714.480000'
                      count: 1
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````