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

# List deposit options

> Returns the list of source token/network combinations accepted for deposits. Use the `token` and `network` values as `source_token` and `source_network` in `POST /api/payouts/transfer`.

Every option includes a `status` field — `"available"` or `"unavailable"`. Unavailable options are temporarily disabled; do not use their `token`/`network` values in a transfer request.

**Rate limit:** 60 requests/minute.



## OpenAPI

````yaml /openapi.json get /api/payouts/deposit-options
openapi: 3.0.3
info:
  title: MW Payouts API
  version: 1.0.0
  description: >-
    The MW Payouts API lets you programmatically retrieve exchange-rate quotes,
    calculate platform fees, and submit USDC-to-fiat payout transfers on behalf
    of your account.


    All requests must be authenticated with an API key obtained from the
    **Developers** section of the dashboard. API keys are for **server-side use
    only** — never embed them in client-side code.
  contact:
    name: MW Support
    email: support@madhousewallet.com
servers:
  - url: https://business.madhousewallet.com
    description: Production
security:
  - BearerAuth: []
tags:
  - name: Payouts
    description: USDC-to-fiat payout operations
  - name: Recipients
    description: Payout recipient management
paths:
  /api/payouts/deposit-options:
    get:
      tags:
        - Payouts
      summary: List deposit options
      description: >-
        Returns the list of source token/network combinations accepted for
        deposits. Use the `token` and `network` values as `source_token` and
        `source_network` in `POST /api/payouts/transfer`.


        Every option includes a `status` field — `"available"` or
        `"unavailable"`. Unavailable options are temporarily disabled; do not
        use their `token`/`network` values in a transfer request.


        **Rate limit:** 60 requests/minute.
      operationId: getDepositOptions
      responses:
        '200':
          description: Deposit options returned
          content:
            application/json:
              schema:
                type: object
                properties:
                  options:
                    type: array
                    items:
                      type: object
                      properties:
                        token:
                          type: string
                          description: Source token identifier — pass as source_token.
                          example: usdc
                        network:
                          type: string
                          description: Source network identifier — pass as source_network.
                          example: base
                        label:
                          type: string
                          description: Human-readable label.
                          example: USDC on Base
                        tokenLabel:
                          type: string
                          description: Short token display label.
                          example: USDC
                        networkLabel:
                          type: string
                          description: Short network display label.
                          example: Base
                        status:
                          type: string
                          enum:
                            - available
                            - unavailable
                          description: >-
                            "available" — option can be used. "unavailable" —
                            temporarily disabled; do not use in a transfer
                            request.
                          example: available
                      required:
                        - token
                        - network
                        - label
                        - tokenLabel
                        - networkLabel
                        - status
              example:
                options:
                  - token: usdc
                    network: arbitrum
                    label: USDC on Arbitrum
                    tokenLabel: USDC
                    networkLabel: Arbitrum
                    status: available
                  - token: usdc
                    network: base
                    label: USDC on Base
                    tokenLabel: USDC
                    networkLabel: Base
                    status: available
                  - token: usdc
                    network: solana
                    label: USDC on Solana
                    tokenLabel: USDC
                    networkLabel: Solana
                    status: unavailable
                  - token: usdt
                    network: tron
                    label: USDT on Tron
                    tokenLabel: USDT
                    networkLabel: Tron
                    status: unavailable
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit exceeded (60 requests/minute per key)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message
      required:
        - error
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Pass your API key as a Bearer token: `Authorization: Bearer
        mw_live_<keyId>_<secret>`

````