Discover/EU-Startups API
live

EU-Startups APIeu-startups.com

Access the EU-Startups investor database, startup directory, job board, and news articles via a structured API. Filter investors by type, country, and keyword.

Endpoint health
verified 2d ago
list_investors
get_investor_detail
list_startups
list_articles
search_investors
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the EU-Startups API?

The EU-Startups API exposes 7 endpoints covering the EU-Startups investor database, startup directory, job board, and news feed. The get_investor_detail endpoint returns up to 10 structured fields per investor — including funding stage, investment areas, HQ location, and contact email — while search_investors lets you filter the database by investor type, keyword, and 2-letter country code.

Try it
Page number to retrieve.
api.parse.bot/scraper/cbac3c36-bce2-4e91-b253-f223cccf850c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/cbac3c36-bce2-4e91-b253-f223cccf850c/list_investors?page=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace eu-startups-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""EU-Startups API: discover investors, startups, articles, and jobs across Europe."""
from parse_apis.eu_startups_api import EUStartups, InvestorType, NotFound

client = EUStartups()

# List investor summaries from the database, capped at 5
for inv in client.investorsummaries.list(limit=5):
    print(inv.name, inv.slug)

# Search for VC investors in Germany
for inv in client.investorsummaries.search(type=InvestorType.VC, country="DE", limit=3):
    print(inv.name, inv.url)

# Drill into one investor's full details via the summary's navigation op
summary = client.investorsummaries.search(type=InvestorType.VC, limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.investor_type, detail.hq_location, detail.investment_areas)

# Fetch an investor directly by slug, with typed-error handling
try:
    investor = client.investors.get(slug="indifferent-ventures")
    print(investor.name, investor.typical_investment, investor.funding_stage)
except NotFound as exc:
    print(f"Investor not found: {exc.slug}")

# Browse latest articles
for article in client.articles.list(limit=3):
    print(article.title, article.date)

# List current job openings
for job in client.jobs.list(limit=5):
    print(job.title, job.url)

print("Exercised: investorsummaries.list, investorsummaries.search, summary.details, investors.get, articles.list, jobs.list")
All endpoints · 7 totalmissing one? ·

List investors from the EU-Startups Investor Database. Returns a paginated list of investor summaries with name, URL, and slug. Each page contains approximately 11 investors. Use the slug to fetch full investor details via get_investor_detail.

Input
ParamTypeDescription
pageintegerPage number to retrieve.
Response
{
  "type": "object",
  "fields": {
    "page": "string representing the current page number",
    "investors": "array of investor summary objects with name, url, and slug",
    "total_pages": "integer total number of pages available, or null if not determinable"
  }
}

About the EU-Startups API

Investor Database

The list_investors endpoint returns a paginated list of investors (up to 381 pages), each with a name, url, and slug. Pass that slug to get_investor_detail to retrieve a full profile: investor_type (e.g. VC Firm, accelerator, corporate), hq_location, funding_stage, investment_areas, contact_email, linkedin, and a free-text description. The search_investors endpoint accepts a query string, a country code (ISO 3166-1 alpha-2), and a type filter — note that accelerator must be passed as acclerator to match the accepted value.

Startup Directory

list_startups pages through the startup directory, returning each entry's name, url, and slug. get_startup_detail expands a slug into a full profile with business_description, founded year, based_in, category, tags, website, and total_funding. If a slug is no longer valid, the endpoint returns a stale_input indicator rather than an error, which lets callers detect and skip removed listings cleanly.

News and Jobs

list_articles pulls from the EU-Startups news feed and returns article id, title, url, date, and slug. The limit parameter accepts up to 100 articles per page, and the response includes total and total_pages fields when the upstream feed provides them. list_jobs returns the full active job board in a single unpaginated response — each job object includes title, url, and slug. No input parameters are required.

Reliability & maintenanceVerified

The EU-Startups API is a managed, monitored endpoint for eu-startups.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when eu-startups.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official eu-startups.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build an investor prospecting tool filtered by country code and investor type using search_investors
  • Aggregate EU startup profiles with founding year, funding totals, and categories from get_startup_detail
  • Monitor new EU-Startups news articles by polling list_articles with a date filter
  • Populate a CRM with investor contact emails and LinkedIn URLs from get_investor_detail
  • Track EU-focused job openings in tech by consuming the list_jobs endpoint
  • Map the European VC landscape by collecting hq_location and investment_areas across all investor pages
  • Identify accelerators and corporate investors separately using the type filter in search_investors
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 EU-Startups have an official developer API?+
EU-Startups does not publish an official developer API. The news feed is backed by a WordPress REST API, but the investor database, startup directory, and job board have no documented public API. This Parse API provides structured access to all four data sources.
What does `get_investor_detail` return beyond what the list endpoints provide?+
list_investors and search_investors return only name, url, and slug. get_investor_detail adds investor_type, hq_location, funding_stage, investment_areas, contact_email, linkedin, website, and a free-text description. You need a slug from the list or search endpoints to call the detail endpoint.
Can I filter startups by category, country, or founding year?+
Not currently. list_startups only supports page-based pagination, and there is no search or filter endpoint for the startup directory. Category, country, and founding year are available as response fields in get_startup_detail once you have a slug. You can fork this API on Parse and revise it to add a filtered startup search endpoint.
How does the `stale_input` response work for startups?+
When a slug passed to get_startup_detail no longer maps to an active listing in the directory, the endpoint returns a stale_input indicator rather than a hard error. This allows batch processing pipelines to log and skip removed startups without breaking on a 404.
Does the API return investor portfolio companies or deal history?+
Not currently. The API covers investor profiles with fields like investment_areas, funding_stage, and investor_type, but portfolio companies and individual deal records are not part of the response shape. You can fork this API on Parse and revise it to add an endpoint targeting portfolio data if that information is publicly listed on an investor's profile page.
Page content last updated . Spec covers 7 endpoints from eu-startups.com.
Related APIs in B2b DirectorySee all →
topstartups.io API
Access startup profiles, funding data, job listings, and salary benchmarks from TopStartups.io. Filter by industry, location, funding stage, company size, and more to explore the startup landscape at scale.
cbinsights.com API
Access CB Insights data including company and investor profiles, funding history, competitor maps, the unicorn list, and research reports.
europages.fr API
Search for European suppliers and products, retrieve detailed company information and catalogs, and discover business listings across thousands of manufacturers and distributors on Europages. Find the right B2B partners by filtering suppliers, accessing company profiles, and browsing their product offerings all in one place.
startups.rip API
Search and analyze data on 1,700+ Y Combinator startups, including their current status (active, acquired, or defunct), company details, and research reports organized by batch. Find similar companies, browse startups by cohort, and discover insights about YC's portfolio ecosystem.
poslovi.infostud.com API
Search and browse job listings from Serbia's top job board, view detailed job information with employer profiles and salary benchmarks. Filter opportunities by job categories and discover insights about employers hiring on Infostud.
angel.co API
Search for startup job opportunities and explore detailed information about companies, positions, and founders all in one place. Discover your next role by browsing Wellfound's curated startup jobs with comprehensive company profiles and person details.
features.financialjuice.com API
Get live financial news, economic calendar events, and in-depth articles to stay informed on market movements and economic indicators. Search and filter news by stock codes and calendar events to find the financial information most relevant to your trading or investment decisions.
trustmrr.com API
Search a verified database of profitable startups and businesses for sale with real revenue data authenticated by Stripe and other payment processors, then filter results by category, performance metrics, and acquisition status to find investment opportunities. Access detailed company information including leaderboard rankings, growth statistics, and acquisition listings all in clean JSON format.