QuickRef.tips
Data

Reference data API

Every table on this site is also a file. Static JSON and CSV, no key, no rate limit, no sign up, CORS open to everything. Use it in a build step, a test fixture, or a side project.

Start here

One request lists everything, including the record count and the last change date of each dataset:

curl https://quickref.tips/api/v1/index.json

Then fetch the dataset you want:

curl https://quickref.tips/api/v1/http-status-codes.json

Or the same data as CSV, for a spreadsheet:

curl https://quickref.tips/api/v1/ascii-table.csv

Every JSON file is wrapped in an envelope that says where the data came from and how to credit it, so a consumer never has to guess:

{ "dataset": "http-status-codes", "version": "2.0.0", "updated": "2026-08-05", "source": { "name": "IANA HTTP Status Code Registry", "url": "..." }, "checkedAt": "2026-08-05", "license": "CC BY 4.0", "attribution": "Data from quickref.tips", "recordCount": 74, "data": [ ... ] }

The recordCount is counted from the array being served, so it can never disagree with the payload. The checkedAt field is null where the data has not been re-verified against its primary source; that is deliberate, and the methodology explains what it means.

Endpoints

15 datasets

Terms, in one paragraph

The data is published under CC BY 4.0. You can copy it, change it, and use it commercially. In return, credit it: the line Data from quickref.tips with a link is enough. The full text, with a copy and paste attribution block, is on the licence page.

The files are static and cached for a day, so hammering them costs you nothing and costs us nothing. There is no key and there will not be one. If an endpoint is wrong, that is a bug worth reporting: see the methodology for how.

QuickRef.tips is a reference desk for standards and protocols. It is not affiliated with quickref.me, which covers programming language and framework syntax.