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

# List payouts

> Retrieve a list of payouts for the store's connected Blink account. The `x-store-id` header is used to verify store association and ensure a connected Blink account exists.

- **Query Parameters:**
  - `limit` (integer, optional): Number of payouts to return.

- **Responses:**
  - `200`: Payouts retrieved successfully.
  - `400`: Store has no connected Blink account.
  - `401`: Unauthorized if `x-store-id` is not provided.



## OpenAPI

````yaml /api-reference/blink-api.json get /payouts
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
tags:
  - name: Invoices
    description: Unified merchant of record invoices for products and subscriptions.
  - name: Geo Pricing
    description: Resolve Purchasing Power Parity (PPP) localized pricing.
paths:
  /payouts:
    get:
      tags:
        - Payouts
      summary: List payouts
      description: >-
        Retrieve a list of payouts for the store's connected Blink account. The
        `x-store-id` header is used to verify store association and ensure a
        connected Blink account exists.


        - **Query Parameters:**
          - `limit` (integer, optional): Number of payouts to return.

        - **Responses:**
          - `200`: Payouts retrieved successfully.
          - `400`: Store has no connected Blink account.
          - `401`: Unauthorized if `x-store-id` is not provided.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
          description: Number of payouts to return.
      responses:
        '200':
          description: Payouts retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutsList'
        '400':
          description: Bad Request - No Blink account connected.
        '401':
          description: Unauthorized - Store ID header missing.
      security:
        - storeIdHeader: []
components:
  schemas:
    PayoutsList:
      type: object
      properties:
        meta:
          type: object
          properties:
            has_more:
              type: boolean
        data:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              amount:
                type: integer
              currency:
                type: string
              payout_date:
                type: string
                format: date-time
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````