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

# Initiate Espees Offramp

> Initiate an Espees (ESP) → fiat conversion. Submit the Espees amount, target fiat currency, and the recipient bank account. LINK converts at the current Espees rate and initiates fiat disbursement.



## OpenAPI

````yaml /reference/link-transaction.json post /transactions/v2/esp_offramp
openapi: 3.1.0
info:
  title: link-transaction
  version: '1.0'
servers:
  - url: https://api.linkio.world
security:
  - sec0: []
tags:
  - name: Direct FX
  - name: Pan-Africa Ramp
  - name: BRL Ramp
  - name: IDR Ramp
  - name: B2B
  - name: Customers
  - name: Static Details
  - name: Transactions
  - name: Accounts
  - name: ESPESS
paths:
  /transactions/v2/esp_offramp:
    post:
      tags:
        - ESPESS
      summary: Initiate Espees Offramp
      description: >-
        Initiate an Espees (ESP) → fiat conversion. Submit the Espees amount,
        target fiat currency, and the recipient bank account. LINK converts at
        the current Espees rate and initiates fiat disbursement.
      operationId: post_esp-offramp
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                currency:
                  type: string
                  description: Fiat currency the user wants to receive.
                  enum:
                    - AED
                    - EUR
                    - NGN
                    - SGD
                amount:
                  type: number
                  description: Amount of Espees (ESP) to sell.
                bankName:
                  type: string
                  description: Recipient's bank name.
                accountName:
                  type: string
                  description: Recipient's account name.
                accountNumber:
                  type: string
                  description: Recipient's account number.
                kingschatUsername:
                  type: string
                  description: >-
                    KingsChat username linked to the user's Espees account.
                    Optional — provide at least one identification field.
                espeesCard:
                  type: string
                  description: >-
                    Espees card number. Optional — provide at least one
                    identification field.
                emailAddress:
                  type: string
                  description: >-
                    Email address registered with the user's Espees account.
                    Optional — provide at least one identification field.
              required:
                - currency
                - amount
                - bankName
                - accountName
                - accountNumber
      responses:
        '201':
          description: Transaction created successfully.
        '400':
          description: Missing or invalid request fields.
        '500':
          description: Rate unavailable or internal server error.
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: ngnc-sec-key
      x-default: ''

````