For people and software

Knowledge you can inspect.

Public, versioned JSON snapshots: 54 models, 6 historical milestones and 5 technology terms.

Available now: static JSON files.

These are downloadable snapshots, not a live query API. No paid API, MCP server or machine-payment service is active.

Read the data

One model, one stable identifier

Read the LCD-X JSON record or open its human-readable profile.

GET /data/v1/models/audeze-lcd-x.json

Understand the contract

Filter locally

Example JavaScript for a client on this site: select documented open-back models above 100 ohms. The filtering happens in your client.

const { records } = await fetch('/data/v1/headphones.json').then(r => r.json());
const matches = records.filter(({ fields: f }) =>
  f.design.value === 'open-back' &&
  f.impedanceOhms.status === 'documented' &&
  f.impedanceOhms.value > 100
);

Data gaps, model-generation mappings and additional historical periods are still being researched. Review dates describe source checks, not a freshness guarantee.

Read our evidence policy →