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

# Verify bank account

> Verifies fiat bank account details and returns the account name that should be shown before saving a recipient. Production requires approved KYB. Verification does not create a recipient and does not move funds.



## OpenAPI

````yaml /openapi/openapi.json post /partner/wallets/fiat/verify-account
openapi: 3.1.0
info:
  title: Stabyl API
  description: >-
    REST API for approved Stabyl accounts to automate exchange, wallet, and
    non-production simulation workflows.
  contact:
    name: Stabyl Support
    email: support@stabyl.com
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.stabyl.com/v1
    description: Production
  - url: https://api-staging.stabyl.com/v1
    description: Staging
security: []
tags:
  - name: Exchange
    description: Trading market data and order management for account automation.
  - name: Wallets
    description: >-
      Supported routes, deposit destinations, balances, transactions, and saved
      recipients.
  - name: Webhooks
    description: >-
      Outbound event delivery configuration and eventually consistent delivery
      history. Verify Standard Webhooks webhook-id, webhook-timestamp, and
      webhook-signature headers against the unchanged raw request body before
      parsing JSON.
  - name: Simulation
    description: Non-production endpoints for testing integration behavior.
paths:
  /partner/wallets/fiat/verify-account:
    post:
      tags:
        - Wallets
      summary: Verify bank account
      description: >-
        Verifies fiat bank account details and returns the account name that
        should be shown before saving a recipient. Production requires approved
        KYB. Verification does not create a recipient and does not move funds.
      operationId: post_partner_wallets_fiat_verify_account
      requestBody:
        description: Bank account details to verify before saving a fiat recipient.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VerifyAccountRequest'
        required: true
      responses:
        '200':
          description: Account verification result
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/VerifyAccountResponse'
                  status:
                    type: string
                    enum:
                      - success
              example:
                data:
                  account_name: EXAMPLE RECIPIENT
                status: success
        '400':
          description: Invalid account
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: VALIDATION_FAILED
                      message:
                        type: string
                        example: invalid request parameters
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: VALIDATION_FAILED
                  message: invalid request parameters
                status: error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - error
                properties:
                  error:
                    type: object
                    required:
                      - code
                      - message
                    properties:
                      code:
                        type: string
                        example: UNAUTHORIZED
                      message:
                        type: string
                        example: missing X-Api-Key header
                  status:
                    type: string
                    enum:
                      - error
              example:
                error:
                  code: UNAUTHORIZED
                  message: missing X-Api-Key header
                status: error
      security:
        - api_key: []
components:
  schemas:
    VerifyAccountRequest:
      type: object
      description: Bank account details to verify before saving a fiat recipient.
      required:
        - account_number
        - bank_code
      properties:
        account_number:
          type: string
          description: Account number to verify
          example: '0123456789'
        bank_code:
          type: string
          description: Bank code
          example: '044'
    VerifyAccountResponse:
      type: object
      description: Verified bank account name returned for operator confirmation.
      required:
        - account_name
      properties:
        account_name:
          type: string
          description: Verified account holder name
          example: JOHN DOE
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: X-Api-Key
      description: >-
        API credential. Withdrawal quote and submit operations additionally
        require the documented Ed25519 timestamp, nonce, and signature headers.
      x-default: sb_test_your_key

````