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

> Fetches a list of Blink payouts for the store identified by `x-store-id`. Requires a connected Blink account. Supports limiting the result set.

**Usage:** Useful for financial reconciliation and tracking payouts from Blink.



## OpenAPI

````yaml 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: []
paths:
  /payouts:
    get:
      tags:
        - Payouts
      summary: List Blink payouts
      description: >-
        Fetches a list of Blink payouts for the store identified by
        `x-store-id`. Requires a connected Blink account. Supports limiting the
        result set.


        **Usage:** Useful for financial reconciliation and tracking payouts from
        Blink.
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
      responses:
        '200':
          description: Payouts retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutsListResponse'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
components:
  schemas:
    PayoutsListResponse:
      type: object
      properties:
        meta:
          type: object
          properties:
            has_more:
              type: boolean
        data:
          type: array
          items:
            type: object
            additionalProperties: true

````