Documentation

BlueHouse API

Current rates

LiveImplemented and served directly by BlueHouse.

Returns the most recently observed quote for every supported house.

GET/api/v1/rates

Response

FieldTypeDescription
dataCurrentRate[]Latest quote for each house.
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": 3
}