Discover/topstartups.io API
live

topstartups.io APItopstartups.io

Access startup profiles, funding data, job listings, and salary benchmarks from TopStartups.io via 4 structured endpoints with filtering and pagination.

Endpoints
4
Updated
3mo ago
Try it
Page number for pagination.
Sort order. Accepted values: 'funding', 'valuation'.
Filter by investor name (e.g. 'Sequoia').
Filter by industry (e.g. 'SaaS', 'Artificial Intelligence').
Filter by HQ location (e.g. 'New York').
Filter by company size (e.g. '11-50 employees').
Filter by founded year (e.g. '2020').
Filter by funding stage (e.g. 'Series A').
api.parse.bot/scraper/53e9bd7c-29f3-4f70-b60d-4af39472b47a/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/53e9bd7c-29f3-4f70-b60d-4af39472b47a/get_startups?page=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Retrieve a paginated list of startups with optional filters for industry, location, size, founding year, funding stage, and investors. Returns up to ~20 startups per page.

Input
ParamTypeDescription
pagestringPage number for pagination.
sortstringSort order. Accepted values: 'funding', 'valuation'.
investorsstringFilter by investor name (e.g. 'Sequoia').
industriesstringFilter by industry (e.g. 'SaaS', 'Artificial Intelligence').
hq_locationstringFilter by HQ location (e.g. 'New York').
company_sizestringFilter by company size (e.g. '11-50 employees').
founded_yearstringFilter by founded year (e.g. '2020').
funding_roundstringFilter by funding stage (e.g. 'Series A').
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "has_more": "boolean, whether more pages are available",
    "startups": "array of startup objects with name, website, logo_url, description, industry_tags, hq_location, company_size, founded_year, latest_funding_round, investors, valuation, and founders"
  },
  "sample": {
    "data": {
      "page": 1,
      "has_more": true,
      "startups": [
        {
          "name": "Pogo",
          "website": "https://www.joinpogo.com/?utm_source=topstartups.io",
          "founders": "Leaders at $1B+ startups",
          "logo_url": "https://images.crunchbase.com/image/upload/c_pad,f_auto,q_auto:eco,dpr_1/v9h9vnif2jljbnyrhk4d",
          "investors": [
            "20VC",
            "Josh Buckley"
          ],
          "valuation": null,
          "description": "Help over 3M+ users earn and save by unlocking the power of their data.",
          "hq_location": "Brooklyn, New York, USA",
          "company_size": "11-50 employees",
          "founded_year": "2020",
          "industry_tags": [
            "Consumer",
            "Mobile App",
            "FinTech"
          ],
          "latest_funding_round": "Series A in 2025"
        }
      ]
    },
    "status": "success"
  }
}

About the topstartups.io API

The TopStartups.io API exposes 4 endpoints covering startup discovery, job listings, individual company profiles, and salary benchmarks. The get_startups endpoint returns paginated startup records filterable by industry, funding stage, investor name, and HQ location. The get_salary_data endpoint surfaces up to ~2,500 salary and equity records tied to specific startup stages, roles, and team functions — making it usable for compensation research without manual data collection.

Startup Discovery and Filtering

The get_startups endpoint returns up to ~20 startup records per page. Each record includes name, website, logo_url, description, industry_tags, hq_location, company_size, founded_year, and latest funding information. You can filter by industries (e.g. 'SaaS', 'Artificial Intelligence'), funding_round (e.g. 'Series A'), investors (e.g. 'Sequoia'), hq_location, company_size, and founded_year. Sorting by 'funding' or 'valuation' is supported. The has_more field in the response lets you drive pagination loops cleanly.

Company Profiles and Job Listings

get_startup_details accepts a startup name and returns a full profile including founders, investors (as an array of strings), valuation, description, hq_location, company_size, and founded_year. If the startup cannot be located, the endpoint returns a not-found result rather than an error, so your code should check for null fields.

The get_jobs endpoint lists open roles at startups, with each job record carrying job_title, location, experience, posted_date, apply_url, and associated company details. You can filter by role, job_location, yoe (years of experience), startup__name, startup__markets, and startup__company_size.

Salary and Equity Data

get_salary_data returns structured compensation records from the TopStartups salary database. Each record includes title, salary, equity_percent, equity_dollars, location, total_yoe, years_at_startup, and stage. Filters include team (e.g. 'Engineering', 'Product'), title, stage, company_size, and work_location. Results are applied server-side and can return up to ~2,500 records in a single response, making bulk salary benchmarking straightforward.

Common use cases
  • Build a startup discovery tool that filters companies by funding stage and investor (e.g. all Series B companies backed by Sequoia)
  • Aggregate salary benchmarks for specific engineering or product roles across startup stages using get_salary_data
  • Monitor new job postings at target startups by polling get_jobs filtered by startup__name or startup__markets
  • Enrich a CRM with structured startup metadata — founders, investors, valuation, and HQ — via get_startup_details
  • Analyze equity compensation trends by filtering get_salary_data on stage and team to compare early vs. late-stage offers
  • Generate a filtered startup list by founding year and company size for market research or investment screening
  • Track which startups are actively hiring for remote roles by combining job_location and startup__markets filters in get_jobs
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does TopStartups.io have an official developer API?+
TopStartups.io does not publish an official public developer API. This Parse API provides structured programmatic access to the startup, job, and salary data on the site.
What does `get_startup_details` return that `get_startups` does not?+
get_startup_details returns fields not present in the listing endpoint: founders (founder information), investors (an array of investor name strings), and valuation. The listing endpoint returns broader pagination-friendly data but does not include those per-company details.
Does `get_salary_data` return individual submissions or aggregated statistics?+
It returns individual salary records, each with salary, equity_percent, equity_dollars, total_yoe, years_at_startup, and stage. The API does not return pre-aggregated statistics like medians or percentiles — any aggregation needs to be done on your end after fetching the records.
Are historical funding rounds or full funding history available for a startup?+
Not currently. The API exposes the latest funding information in get_startups and a valuation field in get_startup_details, but does not return a timeline of all past funding rounds. You can fork this API on Parse and revise it to add an endpoint that surfaces historical funding round data if the source makes it available.
How does pagination work across the listing endpoints?+
Both get_startups and get_jobs return a page integer and a has_more boolean. Pass an incrementing page string parameter in each request and stop when has_more is false. get_salary_data returns all matching records in a single response (up to ~2,500) and does not use the same pagination pattern.
Page content last updated . Spec covers 4 endpoints from topstartups.io.
Related APIs in B2b DirectorySee all →
13f.info API
13f.info API
mouser.com API
mouser.com API
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
yellowpages-uae.com API
Search and discover UAE businesses with instant access to contact details, locations, and branch information from the Yellow Pages UAE directory. Find companies by name, get detailed business profiles, explore multiple branches, and browse available cities all in one place.
104.com.tw API
Search for jobs across Taiwan's largest job board and retrieve detailed job listings including descriptions, requirements, and company information. Find the right career opportunities by browsing thousands of positions or searching for specific roles that match your skills and interests.
cursor.directory API
Search and discover AI cursor rules, MCP servers, and job listings organized by category to enhance your development workflow. Browse detailed information about each rule and server to find the tools and configurations that best fit your needs.