GET/api/companies
Companies with their official links, verified or not, plus dated items (for the companies.fru.dev registry)
- sinceOnly companies checked or changed at or after this date (YYYY-MM-DD)
- channelOnly companies with a link on this channel
- verifiedWith channel: only verified links on it. Alone: only companies with at least one verified link
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
curl -s "https://socials.fru.dev/api/companies?channel=github&verified=1&limit=2"Sample response
{
"companies": [
{
"slug": "adobe",
"name": "Adobe",
"domain": "adobe.com",
"category": "Software",
"url": "https://socials.fru.dev/companies/adobe",
"registry": "https://companies.fru.dev/companies/adobe",
"checked": "2026-09-24",
"check_state": "ok",
"x_url": "",
"linkedin_url": "https://www.linkedin.com/company/adobe",
"github_url": "https://github.com/adobe",
"youtube_url": "https://www.youtube.com/user/AdobeSystems",
"verified": 4,
"links": [
{
"channel": "website",
"url": "https://www.adobe.com",
"handle": "adobe.com",
"verified": true,
"basis": "site",
"evidence": "https://www.adobe.com/",
"since": "2026-09-24",
"checked": "2026-09-24"
},
{
"channel": "x",
"url": "https://x.com/Adobe",
"handle": "@Adobe",
"verified": false,
"basis": "registry",
"evidence": "https://companies.fru.dev/companies/adobe",
"since": "2026-09-24",
"checked": "2026-09-24"
}
]
},
{
"slug": "ai-engineer",
"name": "AI Engineer",
"domain": "ai.engineer",
"category": "Events and community",
"url": "https://socials.fru.dev/companies/ai-engineer",
"registry": "https://companies.fru.dev/companies/ai-engineer",
"checked": "2026-09-24",
"check_state": "ok",
"x_url": "https://x.com/aidotengineer",
"linkedin_url": "https://www.linkedin.com/company/aidotengineer",
"github_url": "https://github.com/aiDotEngineer",
"youtube_url": "https://www.youtube.com/@aiDotEngineer",
"verified": 4,
"links": [
{
"channel": "website",
"url": "https://ai.engineer",
"handle": "ai.engineer",
"verified": true,
"basis": "site",
"evidence": "https://ai.engineer/",
"since": "2026-09-24",
"checked": "2026-09-24"
},
{
"channel": "x",
"url": "https://x.com/aidotengineer",
"handle": "@aidotengineer",
"verified": true,
"basis": "site",
"evidence": "https://ai.engineer/",
"since": "2026-09-24",
"checked": "2026-09-24"
}
]
}
],
"total": 107,
"limit": 2,
"offset": 0,
"next": "/api/companies?channel=github&verified=1&limit=2&offset=2",
"note": "verified = the company's own site links it (basis site) or the profile links back to its domain (basis backlink); unverified links come f..."
}