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

# Credit Distributors

> The on-chain payout addresses behind each credit type, with lifetime totals — full transparency into where the money comes from.

The on-chain addresses Polymarket pays each program from, with lifetime totals per address.

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

```bash theme={null}
curl "https://api.polynode.dev/v3/credits/distributors" \
  -H "x-api-key: $POLYNODE_API_KEY"
```


## OpenAPI

````yaml GET /v3/credits/distributors
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/credits/distributors:
    get:
      tags:
        - Credits
      summary: Credit Distributors
      description: >-
        The on-chain payout addresses behind each credit type, with lifetime
        totals — full transparency into where the money comes from.
      operationId: credits_distributors
      parameters: []
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                count: 25
                distributors:
                  - address: '0x3a9418b2651c8164db5ebc56f12008137865e0f7'
                    first_ts: 1767809883
                    kind: eoa
                    last_ts: 1782417259
                    status: active
                    tokens:
                      - usdce
                      - pusd
                    total_paid: '111109788.638237'
                    transfers: 907905
                    type: maker_rebate
                  - address: '0xfdb1b8dc7f5789a0c9a398026585b8b10fba5507'
                    first_ts: 1782414209
                    kind: eoa
                    last_ts: 1783730746
                    status: active
                    tokens:
                      - pusd
                    total_paid: '25939985.977000'
                    transfers: 116986
                    type: maker_rebate
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````