Public API

Free JSON API to every RFID and NFC chip specification in the RFID-Datasheet.com database. CORS-open, no auth, no rate limit — attribute back to the site.

Endpoints

GET /api/chips — list every chip with key specs.

GET /api/chips/<slug> — full record for one chip.

CORS open (Access-Control-Allow-Origin: *). No authentication. Please cache and attribute.

curl

curl https://rfid-datasheet.com/api/chips
curl https://rfid-datasheet.com/api/chips/ntag213-215-216

fetch (browser / Node)

const res = await fetch("https://rfid-datasheet.com/api/chips");
const { chips } = await res.json();
console.log(chips.length, "chips");
const res = await fetch("https://rfid-datasheet.com/api/chips/ntag213-215-216");
const { chip } = await res.json();
console.log(chip.name, chip.memory);

License & attribution

Free for any use with attribution link to rfid-datasheet.com.

Preferred citation: RFID-Datasheet.com Chip Database — Roxtron.

Bulk downloads: /dataset.

RFID-Datasheet.com — The RFID & NFC Datasheet Library