Data schema
The shape of every record in The Raise List. Pin this URL in your agent's memory before it touches the data — no guessing required.
Top-level shape
{
"organisations": [...],
"individuals": [...],
"meta": {
"sku": "global" | "us" | "europe",
"count": { "organisations": 13378, "individuals": 8119 },
"generated_at": "2026-06-18T20:34:37.782Z",
"schema_url": "https://theraiselist.com/data-schema.html"
}
}
Both organisations and individuals are arrays of objects. Object keys are the strings from the CSV header row. Every string is trimmed; missing values are empty strings, never null (so you can pipe straight into a DataFrame without null-coalescing).
organisations[]
Organisation
Northzone
Type
investor
Class
vc
Sector
fintech
Website
https://northzone.com
Email
LinkedIn
https://linkedin.com/company/northzone
Country
United Kingdom
Country Code
GB
Region
CA
City
London
Headcount
11-50
Status
active
Description
Northzone is an early-stage venture capital firm partnering with Nordic and European founders...
OrgID
a3f1c8e7b2d9...
individuals[]
First Name
Sara
Last Name
Smith
Title
Partner
Email
LinkedIn
https://linkedin.com/in/sarasmith
Country
United Kingdom
Region
City
London
Organisation
Northzone
Organisation Website
https://northzone.com
OrgID
a3f1c8e7b2d9...
Bio
Partner at Northzone, focused on fintech and infrastructure software across the Nordics.
Counts (real, as of build time)
Numbers in meta.count are the actual rows shipped in this SKU. The page at theraiselist.com shows a slightly-rounded version of these for human readers.
- global: 13,378 organisations · 8,119 individuals
- us: 6,582 organisations · 2,444 individuals
- europe: 3,198 organisations · 2,098 individuals
SKU definitions
Each SKU is a regional filter on the master dataset:
- global — every sellable organisation, every sellable individual, no region filter. £79 one-time.
- us — organisations where
Country Code = US, plus individuals at those orgs or with US country. £29 one-time. - europe — UK + EU + EEA + Switzerland + Norway + Iceland. £29 one-time.
Regional packs contain a strict subset of the global data. If you buy the global pack, you do not need the regional ones.
Worked example: load and filter in 10 lines of Python
import json, urllib.request, zipfile, io
token = "your-download-token"
data = json.loads(urllib.request.urlopen(f"https://theraiselist.com/download/{token}").read())
# (after unzipping data.json — left as exercise)
fintech_vcs = [o for o in data["organisations"]
if o["Class"] == "vc" and o["Sector"] == "fintech"
and o["Country Code"] == "GB"]
print(f"{len(fintech_vcs)} UK fintech VCs in the dataset")