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

# Estimate payout quote

> Estimate payout amount and fees without a contact or provider-side activation.



## OpenAPI

````yaml /openapi.json post /api/v1/balance/payout/quote/dry_run
openapi: 3.1.0
info:
  title: HEVN API
  description: Backend API for HEVN mobile neobank
  version: 0.1.2
servers: []
security: []
paths:
  /api/v1/balance/payout/quote/dry_run:
    post:
      tags:
        - Balance
      summary: Estimate payout quote
      description: >-
        Estimate payout amount and fees without a contact or provider-side
        activation.
      operationId: dry_run_payout_quote_api_v1_balance_payout_quote_dry_run_post
      parameters:
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutQuoteDryRunRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PayoutQuoteDryRunResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    PayoutQuoteDryRunRequest:
      properties:
        rail:
          anyOf:
            - type: string
            - type: 'null'
          title: Rail
        amount:
          type: number
          title: Amount
        type:
          anyOf:
            - type: string
            - type: 'null'
          title: Type
        tokenTo:
          anyOf:
            - type: string
            - type: 'null'
          title: Tokento
        chainTo:
          anyOf:
            - type: string
            - type: 'null'
          title: Chainto
        sourceToken:
          $ref: '#/components/schemas/PayoutSourceToken'
          default: USDC
        providers:
          anyOf:
            - items:
                $ref: '#/components/schemas/CrossChainProvider'
              type: array
            - type: 'null'
          title: Providers
      type: object
      required:
        - amount
      title: PayoutQuoteDryRunRequest
      description: Request for approximate payout quote without contact.
    PayoutQuoteDryRunResponse:
      properties:
        currencyTo:
          type: string
          title: Currencyto
        amountTo:
          type: number
          title: Amountto
        minAmount:
          type: number
          title: Minamount
        fee:
          anyOf:
            - type: number
            - type: 'null'
          title: Fee
        fixedFee:
          anyOf:
            - type: number
            - type: 'null'
          title: Fixedfee
        flatFee:
          anyOf:
            - type: number
            - type: 'null'
          title: Flatfee
      type: object
      required:
        - currencyTo
        - amountTo
        - minAmount
      title: PayoutQuoteDryRunResponse
      description: Approximate payout quote response without provider-side activation.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PayoutSourceToken:
      type: string
      enum:
        - USDC
        - EURC
      title: PayoutSourceToken
      description: |-
        Stablecoin a payout (offramp) quote is funded with.

        USDC is the default across all providers. EURC is Align-only: Align
        accepts an EURC deposit for EUR/SEPA offramps (and prices other
        destination currencies through its own FX).
    CrossChainProvider:
      type: string
      enum:
        - intents
        - lifi
        - align
        - cowswap
        - aerodrome
      title: CrossChainProvider
      description: Cross-chain swap provider.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````