Skip to main content
GET
/
v1
/
fx
/
rates
Danh sách tỷ giá FX
curl --request GET \
  --url https://api-gw.verolabs.co/v1/fx/rates \
  --header 'X-API-KEY: <api-key>'
{
  "data": [
    {
      "date": "2023-11-07T05:31:56Z",
      "base": "<string>",
      "quote": "<string>",
      "rate": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.data-hub.verolabs.co/llms.txt

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

Fetch FX reference rates for one base currency and one or more quote currencies.

Currency conversion

Use rates to convert values across currencies.

Multi-quote request

Request several quote currencies in one call.

Common use cases

  • Convert portfolio values.
  • Show FX reference charts.
  • Add currency context to dashboards.

Key parameters

  • base: base currency, for example USD.
  • quotes: comma-separated quote currencies, for example VND,CNY,JPY.
  • from and to: ISO 8601 UTC timestamps.

Authorizations

X-API-KEY
string
header
required

API key được cấp cho tài khoản của bạn.

Query Parameters

base
string
required
Example:

"USD"

quotes
string
required
Example:

"VND,CNY,JPY"

from
string<date-time>
required

ISO 8601 UTC; phải kết thúc bằng "Z".

Example:

"2026-05-15T00:00:00Z"

to
string<date-time>
required

ISO 8601 UTC; phải kết thúc bằng "Z" và nằm sau from.

Example:

"2026-05-15T01:00:00Z"

limit
integer
default:1000
Required range: 1 <= x <= 10000
Example:

100

Response

OK

data
object[]