Skip to main content
GET
/
trade
/
v1
/
rates
/
indicative
/
{from}
Get all indicative exchange rates
curl --request GET \
  --url https://api.staging.layer1.com/trade/v1/rates/indicative/{from}/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "from": {
      "asset": "USD",
      "amount": "1.0"
    },
    "to": {
      "asset": "EUR",
      "amount": "0.9185"
    },
    "rate": "0.9185"
  },
  {
    "from": {
      "asset": "USD",
      "amount": "1.0"
    },
    "to": {
      "asset": "GBP",
      "amount": "0.7840"
    },
    "rate": "0.7840"
  },
  {
    "from": {
      "asset": "USD",
      "amount": "1.0"
    },
    "to": {
      "asset": "BTC",
      "amount": "0.0000235"
    },
    "rate": "0.0000235"
  },
  {
    "from": {
      "asset": "USD",
      "amount": "1.0"
    },
    "to": {
      "asset": "ETH",
      "amount": "0.000352"
    },
    "rate": "0.000352"
  }
]

Documentation Index

Fetch the complete documentation index at: https://exness-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

from
string
required

Base asset code to get exchange rates from (e.g., BTC, ETH, USD, EUR)

Required string length: 1 - 32

Response

All indicative exchange rates retrieved successfully

from
object

Source amount and asset

to
object

Target amount and asset

rate
number

Exchange rate between the assets

Example:

1.2345