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

# Get payout methods

> Retrieve the authenticated organization's payout configuration and instant payout credit information. Use the instant payout credit info to determine eligibility before selecting the instant payout optional in a sell quote.

**Rate limit:** 120 requests burst, 60 requests/minute sustained.



## OpenAPI

````yaml /api-reference/openapi.json get /execution/payout-methods/v1
openapi: 3.1.0
info:
  title: Pure Public API
  description: >-
    Public API for accessing Pure marketplace data including products, spot
    prices, and more.
  version: 2.0.0
  license:
    name: Proprietary
servers:
  - url: https://api.collectpure.com/
    description: Production server
  - url: https://sandbox.api.collectpure.com/
    description: Sandbox server
security:
  - apiKey: []
tags:
  - name: Root
    description: API information and status
  - name: Products
    description: >-
      Enriched product endpoints — full product details, search, and catalog
      metadata
  - name: Listings
    description: Listing management — create, update, deactivate, list, and view statistics
  - name: Offers
    description: Offer management — create, update, deactivate, list, and view statistics
  - name: Orders
    description: Purchase and sale order management for authenticated organizations
  - name: Marketplace
    description: Spot prices, marketplace statistics, shipping dates, and sitemap data
  - name: Organization
    description: Organization details and settings management
  - name: Inventory
    description: >-
      Inventory management — view items and aggregate statistics for your
      organization
  - name: Products (Legacy)
    description: Legacy product endpoints — use the enriched Products endpoints instead
  - name: Listings (Legacy)
    description: Legacy listing endpoints — use Orderbook endpoints instead
  - name: Offers (Legacy)
    description: Legacy offer endpoints — use Orderbook endpoints instead
  - name: Execution - Buy
    description: Buy execution — quotes, payment methods, and order placement
  - name: Execution - Sell
    description: Sell execution — quotes, payout methods, and order placement
  - name: Sandbox
    description: >-
      Sandbox-only endpoints for discovering test data — not available in
      production
paths:
  /execution/payout-methods/v1:
    get:
      tags:
        - Execution - Sell
      summary: Get payout methods
      description: >-
        Retrieve the authenticated organization's payout configuration and
        instant payout credit information. Use the instant payout credit info to
        determine eligibility before selecting the instant payout optional in a
        sell quote.


        **Rate limit:** 120 requests burst, 60 requests/minute sustained.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      payoutMethod:
                        type: string
                        enum:
                          - electronic_check
                          - teller_ach
                          - wire_transfer
                        description: The organization's configured payout method
                      electronicCheckName:
                        type: string
                        description: Payee name for electronic check payouts
                      electronicCheckEmail:
                        type: string
                        description: Payee email for electronic check payouts
                      instantPayout:
                        type: object
                        properties:
                          creditLimit:
                            type: number
                            description: Total instant payout credit limit in cents
                          outstandingBalance:
                            type: number
                            description: Currently outstanding advances in cents
                          availableCredit:
                            type: number
                            description: Remaining available credit in cents
                        required:
                          - creditLimit
                          - outstandingBalance
                          - availableCredit
                        additionalProperties: false
                    required:
                      - payoutMethod
                      - electronicCheckName
                      - electronicCheckEmail
                      - instantPayout
                    additionalProperties: false
                required:
                  - success
                  - data
                additionalProperties: false
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: API key for authentication

````