Documentation

BlueHouse API

Rate history

LiveImplemented and served directly by BlueHouse.

Returns the recorded history for a requested rate type, either as raw observations or one value per Buenos Aires day.

GET/api/v1/rates/{type}/history

Parameters

FieldTypeDescription
type*HouseNameOne of: oficial, blue, bolsa, contadoconliqui, mayorista, cripto, tarjeta.
fromISO 8601 dateInclusive lower bound for rateDate. A date-only value resolves to the start of that Buenos Aires day; a full timestamp is used as-is.
toISO 8601 dateInclusive upper bound for rateDate. A date-only value resolves to the end of that Buenos Aires day; a full timestamp is used as-is.
interval"raw" | "day"raw returns every observation; day collapses each Buenos Aires day to its last observed value.
field"buy" | "sell" | "mid"Quote side returned in the value field.

Response

FieldTypeDescription
dataHistoryRow[] | DayBucket[]Observations (raw) or one bucket per Buenos Aires day (day).
queryTimenumberDatabase query duration in milliseconds.

Example

{
  "data": [
    {
      "day": "2026-07-29",
      "value": 1410
    },
    {
      "day": "2026-07-30",
      "value": 1420
    }
  ],
  "queryTime": 4
}