npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

bcchapi

v3.0.1

Published

Node.js wrapper for the Banco Central de Chile API. Features a fully typed API client and utility tools to streamline macroeconomic data integration.

Downloads

98

Readme

bcchapi

Node.js wrapper for the Banco Central de Chile REST API. Features a fully typed HTTP client, curated series ID constants, and utility functions for transforming and analysing macroeconomic observations.

Requirements

  • Node.js >= 24.0.0

Installation

npm install bcchapi

Authentication

Register for free at si3.bcentral.cl to obtain API credentials (email + password).

Usage

Fetch a time series

import { Client } from 'bcchapi/client';
import { SERIES } from 'bcchapi/series';

const client = new Client({ user: '[email protected]', pass: 'secret' });

const data = await client.getSeries(SERIES.PRICES.UF, {
  firstdate: '2024-01-01',
  lastdate: '2024-12-31',
});

console.log(data.descripIng); // "Unidad de Fomento (UF)"
console.log(data.observations); // [{ indexDateString, value, statusCode }, ...]

Transform observations

import { toNumbers, toArrays, filterValid, fillForward, mean, rollingMean } from 'bcchapi/utils';

// Parse values to number | null (null for gaps)
const values = toNumbers(data.observations); // [37000.12, null, 37050.45, ...]

// Get parallel Date[] and (number | null)[] arrays
const { dates, values } = toArrays(data.observations);

// Filter out gap observations
const valid = filterValid(data.observations);

// Fill gaps by carrying the last valid value forward (e.g. weekends, holidays)
// Throws if the first observation has no valid value — ensure the start date
// falls on a trading day.
const filled = fillForward(data.observations);

// Summary statistics (gaps are ignored)
const avg = mean(data.observations);

// 3-period rolling mean
const rolling = rollingMean(data.observations, 3);

Compute variations

import { periodVariation, annualVariation } from 'bcchapi/utils';

// Month-over-month change
const mom = periodVariation(cpi.observations);

// 12-month change for monthly series
const yoy = annualVariation(cpi.observations, 12);

Search available series

const monthlySeries = await client.searchSeries('MONTHLY');
console.log(monthlySeries.map((s) => s.englishTitle));

Enable caching

import { Client } from 'bcchapi/client';
import { MemoryCache } from 'bcchapi/cache';

const client = new Client({
  user: '[email protected]',
  pass: 'secret',
  cache: new MemoryCache({ defaultTtlMs: 60 * 60 * 1000 }), // 1 hour
});

// Repeated calls with the same arguments hit the cache — no HTTP request
const data = await client.getSeries(SERIES.PRICES.UF);

Bring your own backend by implementing the Cache interface. Methods may return values or promises, so both synchronous and asynchronous backends are supported:

import type { Cache } from 'bcchapi/cache';

const redisCache: Cache = {
  get: async (key) => {
    /* ... */
  },
  set: async (key, value, ttlMs) => {
    /* ... */
  },
  clear: async () => {
    /* ... */
  },
};

const client = new Client({ user, pass, cache: redisCache });

Error handling

import { ApiError, HttpError } from 'bcchapi/client';

try {
  await client.getSeries('INVALID_ID');
} catch (err) {
  if (err instanceof ApiError) {
    // Non-zero Codigo in the API response body
    console.error(`API error ${err.codigo}: ${err.descripcion}`);
  } else if (err instanceof HttpError) {
    // Non-ok HTTP status
    console.error(`HTTP ${err.status}`);
  } else {
    // Network failure — original error available as err.cause
    throw err;
  }
}

API

bcchapi/client

new Client(options)

| Option | Type | Description | | ------------ | -------------- | --------------------------------------------------------------------------------- | | user | string | BCCH account email | | pass | string | BCCH account password | | fetch | typeof fetch | Custom fetch implementation (optional, useful for testing) | | cache | Cache | Cache backend (optional) — any object satisfying the Cache interface | | cacheTtlMs | number | TTL in milliseconds passed to cache.set on every successful response (optional) |

client.getSeries(seriesId, options?)

Fetches observations for a single time series.

| Parameter | Type | Description | | ------------------- | -------- | ---------------------------------------------------------- | | seriesId | string | BCCH series identifier | | options.firstdate | string | Start date "YYYY-MM-DD" (defaults to earliest available) | | options.lastdate | string | End date "YYYY-MM-DD" (defaults to most recent) |

Returns Promise<SeriesData>.

client.searchSeries(frequency)

Returns metadata for all series with the given frequency. frequency is one of 'DAILY' | 'MONTHLY' | 'QUARTERLY' | 'ANNUAL'.

Returns Promise<SeriesInfo[]>.

bcchapi/cache

Cache interface

Minimal interface for plugging in any cache backend. Methods may return values or promises:

interface Cache {
  get(key: string): unknown | Promise<unknown>;
  set(key: string, value: unknown, ttlMs?: number): void | Promise<void>;
  clear(): void | Promise<void>;
}

new MemoryCache(options?)

Built-in in-memory cache. Entries are evicted lazily on get — no background timers.

| Option | Type | Description | | -------------- | -------- | ---------------------------------------------------------------- | | defaultTtlMs | number | Default TTL in milliseconds. Omit for entries that never expire. |

bcchapi/series

SERIES is a nested as const object of curated series IDs grouped by domain:

| Group | Description | | -------------------------- | ---------------------------------------------------- | | SERIES.EXCHANGE_RATE | USD/CLP and major currency pairs | | SERIES.PRICES | UF, UTM, IVP, CPI and components | | SERIES.INTEREST_RATES | MPR, BCP/BCU sovereign bonds, PDBC rates | | SERIES.MONEY | M1, M2, M3, bank loans by type | | SERIES.NATIONAL_ACCOUNTS | Imacec and components | | SERIES.EXTERNAL_SECTOR | Current account, exports, imports, FDI | | SERIES.EMPLOYMENT | Unemployment rate, labour force, employed/unemployed | | SERIES.PUBLIC_FINANCES | Government revenue, expenditure, fiscal balance | | SERIES.CAPITAL_MARKET | IPSA, stock market capitalisation |

The curated set covers the most frequently queried series. The complete catalog of over 22,000 series is available as a downloadable spreadsheet from the BCCH. You can also use si3.bcentral.cl or client.searchSeries() to browse and discover additional series IDs.

bcchapi/utils

Transform functions

| Function | Description | | ---------------------------------- | -------------------------------------------------------------------------------------------------------------------- | | parseValue(value) | Parses a value string to number \| null (null for empty or non-numeric) | | filterValid(observations) | Returns only observations with parseable numeric values | | toNumbers(observations) | Maps observations to Array<number \| null> | | toMap(observations) | Returns a Map<string, number \| null> keyed by indexDateString | | toArrays(observations) | Returns { dates: Date[], values: Array<number \| null> } | | fillForward(observations) | Fills gap observations by carrying the last valid value forward. Throws if the first observation has no valid value. | | parseObservationDate(dateString) | Parses "DD-MM-YYYY" to a UTC Date | | formatQueryDate(date) | Formats a Date to "YYYY-MM-DD" for use in getSeries options |

Statistics functions

All stats functions operate on Observation[] and ignore gap values (empty or non-numeric).

| Function | Description | | ----------------------------------------------- | ------------------------------------------------------------------------ | | mean(observations) | Arithmetic mean | | stdDev(observations) | Sample standard deviation (Bessel's correction) | | min(observations) | Minimum value | | max(observations) | Maximum value | | periodVariation(observations) | Period-over-period fractional change (value[i] / value[i-1] - 1) | | annualVariation(observations, periodsPerYear) | Year-over-year fractional change (value[i] / value[i - n] - 1) | | rollingMean(observations, window) | Rolling mean over a fixed window; null if any value in window is a gap |

Terms of Use

Use of the Banco Central de Chile API is subject to their terms and conditions. Key points:

  • Registration required — you must register and accept the terms at si3.bcentral.cl to obtain credentials.
  • Rate limit — maximum 5 simultaneous requests per second per account. The API does not support bulk or parallel fetching.
  • Attribution — any application or publication that uses data from this API must credit Banco Central de Chile as the original source.

This library does not redistribute any data. All data is fetched directly from the official API at runtime by the consuming application.

Contributing

See CONTRIBUTING.md.

License

MIT