ai-company-culture-data
v1.0.0
Published
Culture dataset for 49 AI & tech companies — Glassdoor ratings, work-life balance scores, culture values, and open roles. Updated monthly.
Maintainers
Readme
AI Company Culture Data
Culture dataset for 49 AI & tech companies — Glassdoor ratings, work-life balance scores, culture values, and open roles. Updated monthly.
Built and maintained by JobsByCulture — the culture-first job board for AI & tech.
Install
npm install ai-company-culture-dataUsage
const culture = require('ai-company-culture-data');
// Get all companies
const all = culture.getAllCompanies();
console.log(Object.keys(all).length); // 49
// Get a specific company
const anthropic = culture.getCompany('anthropic');
console.log(anthropic);
// {
// name: 'Anthropic',
// glassdoor: 4.4,
// wlbScore: 3.7,
// size: 'Mid (~1,500)',
// values: ['ethical-ai', 'learning', 'equity', ...],
// openRoles: 446,
// profileUrl: 'https://jobsbyculture.com/companies/anthropic'
// }
// Filter by culture value
const remoteCompanies = culture.filterByValue('remote');
console.log(Object.keys(remoteCompanies)); // ['huggingface', 'supabase', 'posthog', ...]
// Top rated companies
const top10 = culture.topRated(4.0);
top10.forEach(([slug, c]) => {
console.log(`${c.name}: ${c.glassdoor}/5 Glassdoor, ${c.wlbScore}/5 WLB`);
});
// Best work-life balance
const bestWLB = culture.bestWLB(4.0);
bestWLB.forEach(([slug, c]) => {
console.log(`${c.name}: ${c.wlbScore}/5 WLB`);
});Data Schema
Each company includes:
| Field | Type | Description |
|-------|------|-------------|
| name | string | Company display name |
| glassdoor | number | Overall Glassdoor rating (1-5) |
| wlbScore | number | Work-life balance score (1-5) |
| size | string | Company size (e.g., "Small (~250)") |
| values | string[] | Culture values (see below) |
| openRoles | number | Current open job count |
| careersUrl | string | Careers page URL |
| profileUrl | string | Full culture profile on JobsByCulture |
Culture Values
wlb, remote, flex-hours, async, deep-work, transparent, flat, diverse,
psych-safety, eng-driven, ship-fast, open-source, learning, equity,
product-impact, many-hats, ethical-ai, social-impactCompanies Included
Anthropic, OpenAI, Databricks, Stripe, Figma, Cloudflare, Datadog, CoreWeave, Airbnb, HubSpot, Samsara, Crusoe, Brex, Scale AI, Glean, Notion, Ramp, Vanta, Mistral AI, LangChain, Grafana Labs, ElevenLabs, Cohere, Plaid, Perplexity AI, Replit, Google DeepMind, Vercel, Cursor, Mercury, Airtable, Synthesia, Together AI, Modal, Supabase, Apollo.io, Tailscale, Baseten, Suno, Pylon, PostHog, Fireworks AI, Runway, incident.io, Linear, Pinecone, Weaviate, Hugging Face, Vast AI
Data Source
All data sourced from JobsByCulture — a culture-first job board that profiles AI & tech companies using Glassdoor data, employee reviews, and community sentiment from Hacker News and Reddit.
License
MIT
