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

# Preview a stablecoin send for a ready customer account

> Preview fees and amounts for a stablecoin send.



## OpenAPI

````yaml /api-reference/openapi.json post /partner/customers/{customer_id}/accounts/{account_id}/sends/preview
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/{account_id}/sends/preview:
    post:
      tags:
        - partner-customer-accounts
      summary: Preview a stablecoin send for a ready customer account
      description: Preview fees and amounts for a stablecoin send.
      operationId: >-
        partner_customer_preview_send_partner_customers__customer_id__accounts__account_id__sends_preview_post
      parameters:
        - name: customer_id
          in: path
          required: true
          schema:
            type: string
            description: Public customer id returned by POST /partner/customers
            examples:
              - pcus_a1b2c3d4e5f6
            title: Customer Id
            example: pcus_a1b2c3d4e5f6
          description: Public customer id returned by POST /partner/customers
          example: pcus_a1b2c3d4e5f6
        - name: account_id
          in: path
          required: true
          schema:
            type: integer
            minimum: 1
            description: Account id returned by the customer account API
            title: Account Id
            example: 21
          description: Account id returned by the customer account API
          example: 21
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PartnerEntitySendPreviewRequest'
            example:
              to_address: '0x40C2f2e0326bD1f647fbeB8732529e08B4DB309f'
              amount: '5.00'
              network: Base
              memo: optional-stellar-memo
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - message
                properties:
                  status:
                    type: string
                    enum:
                      - error
                  message:
                    type: string
                  data:
                    type:
                      - object
                      - 'null'
              example:
                status: error
                message: Validation error
                data:
                  field: country
      security:
        - APIKeyHeader: []
components:
  schemas:
    PartnerEntitySendPreviewRequest:
      properties:
        to_address:
          type: string
          maxLength: 128
          minLength: 8
          title: To Address
        amount:
          type: string
          title: Amount
          description: Decimal amount in USDC, e.g. 10.50
        network:
          anyOf:
            - type: string
            - type: 'null'
          title: Network
          description: Must match the account network when set (Base or Polygon)
      type: object
      required:
        - to_address
        - amount
      title: PartnerEntitySendPreviewRequest
      description: Preview a same-asset USDC send (fee + receive amount; not an FX quote).
      example:
        amount: '5.00'
        network: Base
        to_address: 0xRecipientWalletAddress
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````