Forbes Lists Scraper avatar

Forbes Lists Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Forbes Lists Scraper

Forbes Lists Scraper

Scrape Forbes lists - Billionaires, Forbes 400, Global 2000, Self-Made Women, Best Employers and more. Returns ranked person/company records with full metadata.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

7 days ago

Last modified

Share

Scrape the Forbes ranked lists — World Billionaires, Forbes 400, Global 2000, Self-Made Women, Best Employers for Diversity/Women, and more — with full metadata including rank, net worth, industry, country, CEO, and financial metrics.


What it does

  • Fetches Forbes list data from the official Forbes public JSON API (forbes.com/ajax/list/data)
  • Supports 8 pre-configured lists plus a custom slug mode for any Forbes list URI
  • Returns flat, omit-empty records with rank, profile URL, image URL, and all available metadata
  • No browser required — pure HTTP, Tier 1

Input

FieldTypeDescription
modeSelectWhich Forbes list to scrape (default: billionaires)
listYearIntegerYear of the list (2010–2026, default: 2025)
listSlugStringForbes list slug for byListSlug mode (e.g. billionaires)
listTypeSelectperson or organization for byListSlug mode
minNetWorthNumberFilter: min net worth in $ billions (person lists only)
countryStringFilter: keep only records from this country
industryStringFilter: keep only records where industry contains this text
maxItemsIntegerMax records to emit (1–5000, default: 100)

Available Modes

ModeList
billionairesWorld Billionaires (Real-Time)
forbes400Forbes 400 — America's Richest People
global2000Forbes Global 2000 — World's Largest Public Companies
selfMadeWomenAmerica's Richest Self-Made Women
bestEmployersDiversityBest Employers for Diversity
bestEmployersWomenBest Employers for Women
bestLargeEmployersBest Large Employers
bestMidsizeEmployersBest Midsize Employers
byListSlugAny Forbes list by its URL slug

Output

Person records (billionaires, forbes400, selfMadeWomen)

FieldDescription
rankList rank
nameFull name
firstNameFirst name
lastNameLast name
profileUrlForbes profile URL
imageUrlProfile image URL
netWorthNet worth (numeric)
netWorthUnitB (billions) or M (millions)
netWorthChangeTodayToday's net worth change in millions USD (real-time lists only: billionaires, forbes400)
asOfDate the real-time figures were last updated (real-time lists only)
sourceSource of wealth
industryIndustry category
citizenshipCountry of citizenship
stateUS state (for US-based individuals)
ageAge
genderM or F
titleProfessional title
listNameForbes list identifier
listYearYear of the list
sourceUrlForbes list URL
scrapedAtISO timestamp
recordTypeperson

Company records (global2000, bestEmployers*)

FieldDescription
rankList rank
nameCompany name
urlForbes company URL
logoUrlCompany logo URL
revenue / revenueUnitRevenue in B or M USD
profit / profitUnitNet profit in B or M USD
assets / assetsUnitTotal assets in B or M USD
marketValue / marketValueUnitMarket capitalization in B or M USD
countryCountry of headquarters
industryIndustry category
employeesEmployee count
ceoCEO name
ceoTitleCEO title
websiteUrlCompany website
headquartersHeadquarters location
stateUS state
listNameForbes list identifier
listYearYear of the list
sourceUrlForbes list URL
scrapedAtISO timestamp
recordTypecompany

Example: Top 20 Billionaires

{
"mode": "billionaires",
"listYear": 2025,
"maxItems": 20
}

Sample output:

{
"rank": 1,
"name": "Elon Musk",
"firstName": "Elon",
"lastName": "Musk",
"profileUrl": "https://www.forbes.com/profile/elon-musk/",
"imageUrl": "https://specials-images.forbesimg.com/...",
"netWorth": 311.0,
"netWorthUnit": "B",
"source": "Tesla, SpaceX",
"industry": "Automotive",
"citizenship": "United States",
"age": 53,
"gender": "M",
"listName": "billionaires",
"listYear": 2025,
"sourceUrl": "https://www.forbes.com/lists/billionaires/?year=2025",
"scrapedAt": "2025-01-15T10:30:00+00:00",
"recordType": "person"
}

FAQs

Q: Does it require an API key or login? A: No. Forbes list data is publicly accessible via their JSON API.

Q: How many records can I get? A: The Billionaires list has 3000+ entries. Global 2000 has 2000 entries. Set maxItems up to 5000.

Q: Can I filter by country or industry? A: Yes — use the country (exact match) and industry (substring) input fields.

Q: What years are supported? A: 2010 through 2026. Note that not all lists have data for all years.

Q: Can I scrape any Forbes list? A: Yes — use mode=byListSlug and set listSlug to the Forbes URI slug, i.e. the part of the list's URL after forbes.com/lists/ (e.g. self-made-women for forbes.com/lists/self-made-women/). Set listType to person or organization to match the list's record type.

Q: Why is net worth in billions vs millions? A: Records with net worth ≥ $1B show netWorthUnit=B with a billions value. Smaller values show netWorthUnit=M with a millions value.