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

# List accounts for a ready customer

> List customer accounts, refreshing pending coordinates when available.



## OpenAPI

````yaml /api-reference/openapi.json get /partner/customers/{customer_id}/accounts
openapi: 3.1.0
info:
  title: Element Pay Partner API
  description: >-
    Provider-neutral fiat ↔ crypto ramps for partners. Discover corridors,
    create a binding quote, accept it, and receive webhooks. African local fiat
    (mobile money and bank) is auto-routed by corridor.
  version: 1.0.0
servers:
  - url: https://sandbox.elementpay.net/api/v1
    description: Sandbox
security:
  - APIKeyHeader: []
tags:
  - name: partner
    description: >-
      Corridor discovery, indicative rates, binding quotes, and order acceptance
      (including account currency conversion).
    x-group: Partner
  - name: partner-customers
    description: >-
      Vault KYC: requirements, create, list, get/update, documents, and submit
      (pcus_*).
    x-group: Customers
  - name: partner-customer-accounts
    description: >-
      Customer accounts and funding: open/list/get rails, deposit instructions,
      stablecoin sends, and same-currency fiat book transfers.
    x-group: Customer accounts
paths:
  /partner/customers/{customer_id}/accounts:
    get:
      tags:
        - partner-customer-accounts
      summary: List accounts for a ready customer
      description: List customer accounts, refreshing pending coordinates when available.
      operationId: partner_customer_list_accounts
      parameters:
        - name: customer_id
          in: path
          required: true
          description: Public customer id returned by POST /partner/customers
          schema:
            type: string
            example: pcus_a1b2c3d4e5f6
          example: pcus_a1b2c3d4e5f6
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
              example:
                status: success
                message: Accounts
                data:
                  accounts:
                    - id: 21
                      customer_id: pcus_a1b2c3d4e5f6
                      asset_type: stablecoin
                      currency: USDC
                      network: Base
                      status: active
                      display_name: USDC Base
                      wallet_address: '0x40C2f2e0326bD1f647fbeB8732529e08B4DB309f'
                      balance:
                        available: '12.50'
                        currency: USDC
                      created_at: '2026-08-01T12:00:00+00:00'
                    - id: 18
                      customer_id: pcus_a1b2c3d4e5f6
                      asset_type: fiat
                      currency: EUR
                      network: null
                      status: active
                      display_name: EUR
                      account_number: DE89370400440532013000
                      bank_name: Example Bank
                      swift_bic: COBADEFFXXX
                      balance:
                        available: '250.00'
                        currency: EUR
                      created_at: '2026-08-01T12:00:00+00:00'
        '409':
          description: Deposit account is not ready
          content:
            application/json:
              schema:
                type: object
              example:
                status: error
                message: Deposit account is not ready
                data:
                  deposit_account_status: pending
      security:
        - APIKeyHeader: []
components:
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````