Skip to main content
GET
/
api
/
v1
/
partner
/
quotes
Get quotations
curl --request GET \
  --url https://api.money.orki.io/api/v1/partner/quotes \
  --header 'X-ORKI-API-KEY: <api-key>'
{
  "msg": "Success",
  "data": [
    {
      "provider": {
        "name": "Transak",
        "identifier": "transak",
        "icon": "https://d31sk3i6y53c7h.cloudfront.net/assets/providers/transak.svg"
      },
      "exchange_rate": 2124319.04,
      "is_best": true,
      "crypto_amount": 0.0004,
      "fiat_amount": 900,
      "quote_amount": 0.0004,
      "percentage_diff": 3.14
    }
  ],
  "success": true,
  "code": 200
}

Authorizations

X-ORKI-API-KEY
string
header
required

Query Parameters

fiat_currency
string
required

The fiat currency

Example:

"MXN"

crypto_currency
string
required

The crypto currency

Example:

"BTC"

payment_method
string
required

The payment method

Example:

"credit_debit_card"

network
string
required

The network

Example:

"mainnet"

amount
number
required

Amount

Example:

900

type
enum<string>
required

The type of ramp operation

Available options:
BUY,
SELL
Example:

"BUY"

Response

200 - application/json

Successful quotation response

msg
string
Example:

"Success"

data
object[]
success
boolean
Example:

true

code
integer
Example:

200