Get Exchange Rates

Get exchange rates

Rates are exchange rates, representing the number of fiat currency units equivalent to one BTC.
You can retrieve BitPay's BBB exchange rates.

GET /rates/:basecurrency

Facade PUBLIC

HTTP Request

You can retrieve BitPay's BBB exchange rates.

Rates rates = bitpay.GetRates().Result;

double rate = rates.GetRate("USD"); //Always use the included Currency model to avoid typos

rates.Update();

HTTP Response

Body

NameDescriptionType
dataarray of currency rates for the requested baseCurrency.array
→ codeISO 4217 3-character currency code.string
→ namedetailed currency name.string
→ raterate for the requested baseCurrency /currency pair.number
{
    "data":[
        {
        "code":"BTC",
        "name":"Bitcoin",
        "rate":1
        },
        {
        "code":"BCH",
        "name":"Bitcoin Cash",
        "rate":50.77
        },
        {
        "code":"USD",
        "name":"US Dollar",
        "rate":41248.11
        },
        {
        "code":"EUR",
        "name":"Eurozone Euro",
        "rate":33823.04
        },
        {
        "code":"GBP",
        "name":"Pound Sterling",
        "rate":29011.49
        },
        {
        "code":"JPY",
        "name":"Japanese Yen",
        "rate":4482741
        },
        {
        "code":"CAD",
        "name":"Canadian Dollar",
        "rate":49670.85
        },
        {
        "code":"AUD",
        "name":"Australian Dollar",
        "rate":53031.99
        },
        {
        "code":"CNY",
        "name":"Chinese Yuan",
        "rate":265266.57
        },
        ...
    ]
}