Documentation

BlueHouse API

Rate by type

LiveImplemented and served directly by BlueHouse.

Returns the most recently observed quote for a requested rate type.

GET/api/v1/rates/{type}

Parameters

FieldTypeDescription
type*HouseNameOne of: oficial, blue, bolsa, contadoconliqui, mayorista, cripto, tarjeta.

Response

FieldTypeDescription
dataCurrentRate | nullLatest quote for the requested type, or null when none exists.
currency"USD"Currency represented by the quote.
provider"dolarapi" | "ambito"Source used for this observation.
namestringStable house identifier.
buystring | nullBuy quote, returned as an exact PostgreSQL numeric string.
sellstring | nullSell quote, returned as an exact PostgreSQL numeric string.
rateDateISO 8601 stringProvider-reported effective timestamp for this rate.
queryTimenumberDatabase query duration in milliseconds.

Example

{
  "data": {
    "currency": "USD",
    "provider": "dolarapi",
    "name": "blue",
    "buy": "1400.0000",
    "sell": "1420.0000",
    "rateDate": "2026-07-30T14:30:00.000Z"
  },
  "queryTime": 2
}