Skip to main content
GET
/
api
/
public
/
v1
/
rates
Get exchange rate for a currency pair
curl --request GET \
  --url https://api.wallbit.io/api/public/v1/rates \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "source_currency": "ARS",
    "dest_currency": "USD",
    "pair": "ARSUSD",
    "rate": 1481.02,
    "updated_at": "2026-02-25T01:50:04+00:00"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.wallbit.io/docs/llms.txt

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

Authorizations

X-API-Key
string
header
required

API Key authentication. Obtain your API key from the Wallbit dashboard under Settings → API Keys.

Query Parameters

source_currency
string
required

Source currency code (must exist in Wallbit currencies)

Example:

"ARS"

dest_currency
string
required

Destination currency code (must exist in Wallbit currencies)

Example:

"USD"

Response

Exchange rate found, or identity pair (rate 1.0)

data
object

Exchange rate row exposed by the public API