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

# List My Payouts

> List in-flight + recent payout_requests for the authenticated customer.

Used by the webtrader to surface a status pill on prop account rows
(e.g. "Payout requested $X", "Payout in progress", "Payout paid $X").
Returns rows scoped to accounts the customer owns. The webtrader
typically only displays the latest per account, but we return the
full list so the frontend can pick.



## OpenAPI

````yaml /openapi.json get /customers/me/payouts
openapi: 3.1.0
info:
  title: Slate API
  version: 1.0.0
  description: Trading infrastructure API.
servers:
  - url: https://api.{your-broker}.slate-labs.com
    variables:
      your-broker:
        default: broker
security: []
tags:
  - name: Authentication
  - name: API Tokens
  - name: Customers
  - name: Accounts
  - name: Orders
  - name: Instruments & Groups
  - name: Transactions
  - name: Payments
  - name: Transfers
  - name: Risk
  - name: Workflow & CRM
  - name: Messaging
  - name: Integrations
  - name: Webhooks
  - name: Compliance
  - name: Promo codes
  - name: Reporting
  - name: Audit
  - name: Fraud & moderation
  - name: Broker settings
  - name: Users
  - name: Roles & Teams
  - name: Streams (SSE)
  - name: Simulator
  - name: Observability
  - name: Prop trading
paths:
  /customers/me/payouts:
    get:
      tags:
        - Customers
      summary: List My Payouts
      description: |-
        List in-flight + recent payout_requests for the authenticated customer.

        Used by the webtrader to surface a status pill on prop account rows
        (e.g. "Payout requested $X", "Payout in progress", "Payout paid $X").
        Returns rows scoped to accounts the customer owns. The webtrader
        typically only displays the latest per account, but we return the
        full list so the frontend can pick.
      operationId: list_my_payouts_customers_me_payouts_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````