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

# BRL Auto Onramp



## OpenAPI

````yaml /reference/link-transaction.json post /transactions/v2/brl/initiate_onramp
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/brl/initiate_onramp:
    post:
      tags:
        - BRL Ramp
      summary: BRL Auto Onramp
      operationId: post_create_ticket
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              properties:
                amount:
                  type: string
                  description: Amount in BRL to convert.
                wallet_id:
                  type: string
                  description: The beneficiary wallet ID from Register Wallet.
                stables:
                  type: string
                  description: Stablecoin tøken to receive in USDC/USDT.
                  default: USDC
              type: object
              required:
                - wallet_id
                - amount
                - stables
      responses:
        '200':
          description: ''
          content:
            application/json:
              examples:
                New Example:
                  summary: New Example
                  value:
                    status: Success
                    message: Quote ticket created successfully
                    ticket_id: ticket_123abc
                    payment_code: 000201010212...
                    validity: 5 minutes
                    qrcode_url: data:image/png;base64,...
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: ngnc-sec-key
      x-default: ''

````