Download the register. Use the API. Keep v0 separate.
Reep Next is released as downloadable public artefacts and as a keyed API. The downloadable CSV release is the source contract; DuckDB is a convenience build; relationship edges are optional; v0 remains frozen as an archive.
Last updated 7 September 2026 · release 20260907T201034Z · DuckDB 746 MB · 1,878,719 entities · cut on a weekly cadence.Manifest.
Licence
Public domain: CC0 1.0
The release — the whole of it, provider-ID bridges included — is dedicated under theCreative Commons CC0 1.0public domain dedication, and ships its own LICENSE.txt to say so. You can use it for anything, including commercially. You may copy it, adapt it, and redistribute it, with no permission needed and no attribution required.
A citation request, not a condition: if Reep is useful in your work, we'd be glad if you credited it as “Reep, the football identity register (reep.football)” and named the release stamp you used. This is a courtesy we ask for, never a term of the licence.
This release carries its terms with the data: the CC0-1.0 dedication ships as LICENSE.txt inside the release, and the manifest records the licence machine-readably.
One limit worth stating plainly, and it is not a restriction on the bridges: CC0 can waive only rights Reep holds, so it does not grant rights in third-party source material, and each release carries its own provenance notes. Sponsorship and consultancy have separate terms but do not change access to the public Register.
Download surface
Core CSV bundle
Entities, aliases, relationships, the provider-ID crosswalk (the bridges table), redirects, release metadata, and the public schema. The crosswalk is in the free download — every publishable provider bridge for every entity in the release, not a sample.
Relationship edges
Season, stage, team-season participation, affiliation, and succession edges ship today. Squad, lineup, and coach role-identity edges are on the roadmap. They will land as they clear the public-safety wall.
DuckDB convenience file
Generated from the same CSV export and smoke-tested. Useful for local analysis; not the only supported format.
Wikidata overlay
Wikidata QIDs linked to Reep IDs, plus the second-order external identifiers those QIDs carry. Ships in the same free download. It is a discovery convenience rather than a trust floor — the overlay is community-edited, so it is kept separate from the corroborated bridges rather than mixed into them.
Checksums and schema
Every release carries per-file checksums and schema metadata so consumers can verify and inspect before loading.
The DuckDB link always resolves to the current release's convenience build; the file itself is per-release on R2 and CSV bundles are linked from the release manifest above.
Full raw CSV exports are not committed to git and Git LFS is not the default distribution path. Cloudflare R2 Standard is the canonical launch host for large CSV and DuckDB files; GitHub is for docs, samples and small manifests.
Using the download
The file is a single DuckDB database, reep-register-v1.duckdb. Below: what it's for, a two-minute primer, a prompt to hand your AI, and how it compares to the API. Every count is read from the current release manifest, so it matches the file you download.
What it's mainly for: a crosswalk
Reep resolves football entities to stable Reep IDs and maps external provider IDs onto them. The single most useful thing in the file is the bridges table (provider, namespace, external_id, reep_id). Join your Opta, Transfermarkt or Wyscout IDs to it and you get one stable identity, plus canonical names, aliases and relationships.
6,187,645Provider-ID bridges (the crosswalk)
1,878,719Resolved entities
486,229Typed aliases
1,900,217Relationship edges
1,430Competitions
27,709Teams
Full entity breakdown, provider roles and per-competition coverage live onthe coverage page. What's deliberately excluded (DOB, minors, raw evidence) is in What is in scope below.
Hand it to your AI
Matching your data against the register is a good job for an AI assistant. This prompt gives it the context (what the data is, what it's for) and tells it to ask you about your data and goalfirst, rather than guessing your use case.
hover to preview
I've downloaded a DuckDB database from Reep, an open (CC0) football identity register. Before we do anything with it, read this context, then ask me questions.
What it is: Reep resolves football entities (players, coaches, referees, teams, competitions, seasons and matches) to stable Reep IDs, and maps external provider IDs (Opta, Transfermarkt, Wyscout and others) onto those IDs.
What it's mainly for: it is a crosswalk. Its most valuable use is reconciling football data that uses different providers' IDs into one identity, and enriching records with canonical names, aliases and relationships. Key tables:
- bridges(provider, namespace, external_id, reep_id): the provider-ID crosswalk
- entities(reep_id, entity_type, status, label): one row per resolved identity
- aliases(reep_id, alias, kind, rank, language): alternate/historical names for fuzzy matching
- relationships(from_id, to_id, kind): typed edges (team-season participation, affiliation, succession, …)
- redirects(old_id, reep_id): retired IDs mapped to their survivor; always resolve through this, never assume an ID has vanished
There is also an entity_search full-text index for name search.
Your first step: do not assume my use case. Ask me what data I have, which columns and provider IDs are in it, and what I'm trying to achieve. Once I've answered, propose an approach, help me load and query the file in DuckDB, join my data via the bridges table (falling back to alias name-matching where there is no provider ID), and flag ambiguous matches for me to confirm rather than guessing.
The file is reep-register-v1.duckdb, downloadable from https://reep.football/downloads .
Two-minute DuckDB primer
DuckDB is a single-file analytical database. Think SQLite, but for analytics. No server: open the file and run SQL. Install the CLI (brew install duckdb), the Python package (pip install duckdb), or query it in the browser with DuckDB-Wasm. Then:
Open the file and list the tables
duckdb reep-register-v1.duckdb "SHOW TABLES;"
Map a provider ID to a Reep identity (the crosswalk)
SELECT e.reep_id, e.label, e.entity_type
FROM bridges b JOIN entities e USING (reep_id)
WHERE b.provider = 'transfermarkt'
AND b.external_id = '<their-id>';
Find an entity by name (aliases + languages)
SELECT reep_id, alias, language
FROM aliases
WHERE alias ILIKE '%vardy%';
The database is self-describing: SHOW TABLES; lists every table andDESCRIBE entities; shows its columns. A machine-readableschema and per-filechecksums ship with every release.
DuckDB or the API?
Both serve the same stamped register. The download is for whole-register work offline; the API is a keyed, rate-limited convenience for single live lookups with automatic redirect resolution.
Complete dated snapshots carry every provider-ID bridge admitted by the field, rights and release gates. This is what the download link above gives you, free and in full. Sponsors sustain the public Register; consultancy and Loom work use separate customer-controlled inputs.
No-DOB open census — a separate, narrower tier
Published alongside the bridge register for consumers who want identity without provider IDs. It carries resolved identity rows, labels, aliases, relationships, coverage and confidence; it excludes known minors and omits DOB, birth year, age fields, raw provider IDs and provider crosswalk files. It is an additional option, not a restriction on the main download.
Rich DOB layer
The richer release is not public until the legal gate clears. When it launches, DOB is limited to active adult players and active adult coaches; retired people, referees, unknown-age rows and minors do not receive a DOB cell.
Corrections
Reports about wrong identity, DOB, status, missing rows or minor handling go through the public correction path and are resolved through the same gated register workflow.
API surface
The API is a manually issued, rate-limited convenience over the same stamped public Register. Keys and request limits protect service reliability; they do not unlock additional fields or provider coverage. Use CSV or DuckDB for bulk ingestion.
v0 remains available for existing customers during a separately managed migration. Reep Next launch does not shut down or alter the RapidAPI service. v0 IDs are not promised to carry over to Reep Next.
Public methodology and reference material belongs in Reep Toolkit and the Handbook. Partner-only material, local database paths, working datasets, and raw provider payloads are not public navigation.
Corrections and missing data should go through the public submissions path. The public release does not include internal working notes, private issues, or provider payloads.