> ## 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.

# Create saved recipient

> Creates a saved fiat or crypto recipient record for future use in Stabyl Pro workflows. Production requires approved KYB for fiat recipients. Creating a recipient does not submit a withdrawal or move funds.



## OpenAPI

````yaml /openapi/openapi.json post /partner/wallets/recipients
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/recipients:
    post:
      tags:
        - Wallets
      summary: Create saved recipient
      description: >-
        Creates a saved fiat or crypto recipient record for future use in Stabyl
        Pro workflows. Production requires approved KYB for fiat recipients.
        Creating a recipient does not submit a withdrawal or move funds.
      operationId: post_partner_wallets_recipients
      requestBody:
        description: >-
          Recipient details to save in the account address book. This request
          does not submit a withdrawal.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateWalletRecipientRequest'
        required: true
      responses:
        '200':
          description: Recipient created
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - data
                properties:
                  data:
                    $ref: '#/components/schemas/WalletRecipientResponse'
                  status:
                    type: string
                    enum:
                      - success
              example:
                data:
                  account_name: Example Recipient
                  account_number: '0123456789'
                  bank_code: '044'
                  bank_name: Access Bank
                  chain: null
                  created_at: '2026-05-24T12:00:00Z'
                  crypto_address: null
                  currency: NGN
                  id: 0197f1f0-0000-7000-8000-000000000002
                  label: Operations account
                  recipient_type: fiat
                  updated_at: '2026-05-24T12:00:00Z'
                status: success
        '400':
          description: Validation error
          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:
    CreateWalletRecipientRequest:
      type: object
      description: Recipient details to save in the account address book.
      required:
        - recipient_type
        - label
      properties:
        account_name:
          type:
            - string
            - 'null'
          example: Jane Doe
        account_number:
          type:
            - string
            - 'null'
          example: '0123456789'
        bank_code:
          type:
            - string
            - 'null'
          example: '058'
        bank_name:
          type:
            - string
            - 'null'
          example: GTBank
        chain:
          type:
            - string
            - 'null'
          example: evm
        country:
          type:
            - string
            - 'null'
          description: >-
            ISO-3166 alpha-3 country code for crypto recipients. Null for
            existing recipients

            or when the client has not collected the destination country.
          example: NGA
        crypto_address:
          type:
            - string
            - 'null'
          example: 0x1234...abcd
        currency:
          type:
            - string
            - 'null'
          example: USDT
        label:
          type: string
          example: Main USDT recipient
        recipient_type:
          $ref: '#/components/schemas/RecipientType'
      additionalProperties: false
    WalletRecipientResponse:
      type: object
      description: Saved fiat or crypto recipient record.
      required:
        - id
        - recipient_type
        - label
        - created_at
        - updated_at
      properties:
        account_name:
          type:
            - string
            - 'null'
        account_number:
          type:
            - string
            - 'null'
        bank_code:
          type:
            - string
            - 'null'
        bank_name:
          type:
            - string
            - 'null'
        chain:
          type:
            - string
            - 'null'
        country:
          type:
            - string
            - 'null'
          description: >-
            ISO-3166 alpha-3 country code for crypto recipients. Null for fiat
            recipients

            and for legacy crypto recipients created before the field existed.
          example: NGA
        created_at:
          type: string
        crypto_address:
          type:
            - string
            - 'null'
        currency:
          type:
            - string
            - 'null'
        id:
          type: string
          format: uuid
        label:
          type: string
        recipient_type:
          $ref: '#/components/schemas/RecipientType'
        updated_at:
          type: string
    RecipientType:
      type: string
      description: >-
        Saved recipient type. Fiat recipients use bank details; crypto
        recipients use chain and address details.
      enum:
        - fiat
        - crypto
  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

````