GET/api/labs
Research labs, A to Z, with type, founding year, place, known-for line, flagship model and papers count
- typeOnly this type of lab
- countryOnly labs based in this country (ISO 3166 alpha-2)
- focusOnly this focus
- qWords in the name, known-for line or parent
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
curl -s "https://labs.fru.dev/api/labs?type=startup&limit=2"Sample response
{
"labs": [
{
"slug": "01-ai",
"name": "01.AI",
"type": "startup",
"focus": "ai",
"domain": "01.ai",
"founded": 2023,
"place": "Beijing, China",
"country": "CN",
"parent": "",
"knownFor": "Kai-Fu Lee's lab behind the open Yi models, now focused on enterprise AI products.",
"flagship": {
"name": "Yi-34B",
"url": "https://huggingface.co/01-ai/Yi-34B"
},
"papers": null,
"unverified": false,
"url": "https://labs.fru.dev/labs/01-ai"
},
{
"slug": "ai21-labs",
"name": "AI21 Labs",
"type": "startup",
"focus": "ai",
"domain": "ai21.com",
"founded": 2017,
"place": "Tel Aviv, Israel",
"country": "IL",
"parent": "",
"knownFor": "Jamba, the first production-scale hybrid of Transformer and Mamba layers.",
"flagship": null,
"papers": null,
"unverified": false,
"url": "https://labs.fru.dev/labs/ai21-labs"
}
],
"total": 22,
"limit": 2,
"offset": 0,
"next": "/api/labs?type=startup&limit=2&offset=2",
"note": "Every fact carries its source URL. Leaders, models and papers are synced weekly from leaders.fru.dev, models.fru.dev and papers.fru.dev."
}