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

# Decode Payout Transaction

> Decode one payout transaction into typed credit rows: every recipient, every amount.

Turn one payout transaction hash into its full typed breakdown: every recipient and amount in the batch.

## 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/txs/0xb3b589e87145a7a61324bca2a241c891fd488cf0615e5c2d7a3121b28698d7a6" \
  -H "x-api-key: $POLYNODE_API_KEY"
```


## OpenAPI

````yaml GET /v3/credits/txs/{hash}
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/txs/{hash}:
    get:
      tags:
        - Credits
      summary: Decode Payout Transaction
      description: >-
        Decode one payout transaction into typed credit rows: every recipient,
        every amount.
      operationId: credits_tx_decode
      parameters:
        - name: hash
          in: path
          required: true
          description: Transaction hash.
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              example:
                tx_hash: >-
                  0xb3b589e87145a7a61324bca2a241c891fd488cf0615e5c2d7a3121b28698d7a6
                block_number: 90017147
                timestamp: 1783730716
                type: maker_rebate
                recipients: 400
                total_amount: '187330.184700'
                events:
                  - amount: '3714.480000'
                    log_index: 2043
                    recipient: '0x204f72f35326db932158cba6adff0b9a1da95e14'
                    timestamp: 1783730716
                    token: pusd
                    type: maker_rebate
                    tx_hash: >-
                      0xb3b589e87145a7a61324bca2a241c891fd488cf0615e5c2d7a3121b28698d7a6
                    block_number: 90017147
        '404':
          description: Transaction not found in the credits index
components:
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key

````