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

# Retrieve Payout Balances

> Securely fetches the affiliate's live Available and Pending balances directly from Stripe, along with their recent payout transfers and their Stripe account setup status.



## OpenAPI

````yaml get /v1/affiliates/{id}/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:
  /v1/affiliates/{id}/payouts:
    get:
      tags:
        - Affiliates
      summary: Retrieve Payout Balances
      description: >-
        Securely fetches the affiliate's live Available and Pending balances
        directly from Stripe, along with their recent payout transfers and their
        Stripe account setup status.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: The affiliate membership ID.
      responses:
        '200':
          description: Balances and transfers retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      account_status:
                        type: string
                        enum:
                          - not_setup
                          - pending_onboarding
                          - active
                      available:
                        type: array
                        items:
                          type: object
                          properties:
                            amount:
                              type: integer
                            currency:
                              type: string
                      pending:
                        type: array
                        items:
                          type: object
                          properties:
                            amount:
                              type: integer
                            currency:
                              type: string
                      recent_transfers:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            amount:
                              type: integer
                            currency:
                              type: string
                            created:
                              type: integer

````