Vortex
  1. Quotes
Vortex
  • General overview
  • Vortex Ramp Integration Guide
  • Vortex SDK
  • Quotes
    • Create a new quote
      POST
    • Get existing quote
      GET
  • Ramp
    • Register new ramp process
      POST
    • Get ramp status
      GET
    • Update ramp process
      POST
    • Start ramp process
      POST
  • Account Management
    • Brazil
      • Brazilian KYC Process Overview
      • Get user's remaining transaction limits
      • Get user information
      • Get status of the last ramp event for a user
      • Create user or retry KYC
      • Get user's KYC status
      • Start KYC level 2 process for a user
    • Europe
      • Coming soon...
  • Supported Payment Methods
    GET
  • Supported Cryptocurrencies
    GET
  1. Quotes

Create a new quote

POST
/v1/quotes
Generates a quote for a specified ramp transaction, detailing input and output amounts, fees, and expiration.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.vortexfinance.co/v1/quotes' \
--header 'Content-Type: application/json' \
--data-raw '{
    "rampType": "sell",
    "from": "polygon",
    "to": "cbu",
    "inputAmount": "33",
    "inputCurrency": "usdc",
    "outputCurrency": "ars"
}'
Response Response Example
201 - Success
{
    "id": "quote_7af7171e-aa42-49a2-80c2-9e18483bad38",
    "rampType": "sell",
    "from": "polygon",
    "to": "cbu",
    "inputAmount": "33",
    "outputAmount": "32500.50",
    "inputCurrency": "usdc",
    "outputCurrency": "ars",
    "fee": "0.50",
    "expiresAt": "2025-05-16T12:30:00Z"
}

Request

Body Params application/json

Examples

Responses

🟢201Created
application/json
Quote successfully created.
Body

🟠400Bad Request
🔴500Server Error
Modified at 2025-08-12 12:58:41
Previous
Vortex SDK
Next
Get existing quote
Built with