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

# Get onboarding bank accounts

> Resolves the customer from a valid presigned onboarding URL and returns
their bank accounts. Public — no API key required.



## OpenAPI

````yaml /openapi.json post /ramp/onboarding/bank-accounts
openapi: 3.1.0
info:
  title: Etherfuse FX API
  description: Partner-facing ramp API for onramps, offramps, swaps, and KYC.
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.sand.etherfuse.com
    description: Sandbox
security:
  - ApiKeyAuth: []
tags:
  - name: Authentication
    description: >-
      Partner JWT authentication — exchange a JWT for an access token, or launch
      a user into the app.
  - name: Lookup
    description: >-
      Public reference data: exchange rates, stablebonds, bond costs, country
      codes.
  - name: Assets
    description: Rampable stablecoins and stablebonds available per blockchain.
  - name: Onboarding
    description: Hosted and programmatic customer onboarding.
  - name: Agreements
    description: Legal agreement acceptance during onboarding.
  - name: Bank Accounts
    description: Register and retrieve customer bank accounts.
  - name: Quotes
    description: Price quotes for onramps, offramps, and swaps.
  - name: Orders
    description: Create, track, and manage ramp orders.
  - name: Swaps
    description: Crypto-to-crypto swaps.
  - name: Sponsored
    description: Token approvals for sponsored (gasless) offramps.
  - name: Customers
    description: Customer (child-organization) records.
  - name: Wallets
    description: Register and manage customer wallets.
  - name: KYC
    description: Submit and check customer KYC status.
  - name: Webhooks
    description: Event notification subscriptions.
  - name: Organizations
    description: Organization identity, child orgs, and partner fees.
paths:
  /ramp/onboarding/bank-accounts:
    post:
      tags:
        - Onboarding
      summary: Get onboarding bank accounts
      description: |-
        Resolves the customer from a valid presigned onboarding URL and returns
        their bank accounts. Public — no API key required.
      operationId: get_onboarding_bank_accounts
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PresignedUrlPayload'
        required: true
      responses:
        '200':
          description: The customer's bank accounts
          content:
            application/json:
              schema: {}
              example:
                bank_accounts:
                  - accountLabel: Ana's SPEI account
                    compliant: true
                    currency: MXN
                    internalAccountId: b2c3d4e5-f6a7-8901-bcde-f12345678901
                    organizationId: a1b2c3d4-e5f6-7890-abcd-ef1234567890
                    role: owner
                    status: active
        '400':
          description: Invalid or expired presigned URL
      security:
        - {}
components:
  schemas:
    PresignedUrlPayload:
      type: object
      required:
        - presignedUrl
      properties:
        presignedUrl:
          type: string
      example:
        presignedUrl: >-
          https://api.sand.etherfuse.com/ramp/proof-of-identity?org_id=...&expires=...&signature=...
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key sent in the Authorization header.

````