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

ai-proxy-registry

v1.0.0

Published

A typed, structured registry of metadata for known AI API proxy/relay stations.

Downloads

315

Readme

ai-proxy-registry

A registry of AI API proxy/relay stations. It catalogs metadata for every known station (name, homepage, underlying system, opening date, …) in a typed, structured way, and is updated continuously as new stations appear.

Adding a station

This registry is the data source behind getcheapai.com, a price-comparison site for AI API proxy/relay stations. Anyone can submit a station — whether you run one yourself or you're a user who wants a station you use to be listed.

To add a station:

  1. Fork this repository.
  2. Add an entry to the stations array in src/stations.ts, following the existing entries and the Station type in src/types.ts.
  3. Run npm install then npm run typecheck to make sure your entry type-checks.
  4. Open a pull request.

A minimal entry looks like this (use false for any URL the station doesn't have):

{
  id: 'your-station',
  name: 'Your Station',
  homepage: 'https://example.com',
  system: 'new-api',
  statusUrl: false,
  privacyUrl: false,
  refundUrl: false,
  updatedAt: '2026-05-31',
},

See the Station type in src/types.ts for every field and which are optional.

Note: This registry is open data. Merging an entry here does not guarantee the station will appear on getcheapai.com — listing on the site is at its own discretion.

Install

npm i ai-proxy-registry

Usage

TypeScript / JavaScript

import { stations, type Station, type StationId } from 'ai-proxy-registry'

// Type-safe id: a typo is caught at compile time
const targetId: StationId = 'claude' // ✅
// const wrong: StationId = 'clau'  // ❌ TS error

const station = stations.find((s) => s.id === targetId)
const cnName = station?.i18nNames?.['zh-CN'] ?? station?.name

Using the JSON file directly

For non-JS consumers, the package ships dist/stations.json:

import data from 'ai-proxy-registry/stations.json' with { type: 'json' }

Development

npm install
npm run build       # Build ESM/CJS/d.ts and stations.json
npm run typecheck   # Type check

prepublishOnly rebuilds automatically before publishing.

License

MIT