A toolbox for AI agents.
Dealroom maps the world's tech ecosystems — 3M+ startups, investors, founders and funding rounds. This page (and /llms.txt) is the front door for agents: public APIs, machine-readable data, and a chart factory. No key, no sign-up. Point your agent here and let it build.
You have access to Dealroom.co, a live database of 3M+ startups, investors and funding, exposed as agent-friendly tools. Start by fetching https://dealroom.co/llms.txt for the index. Try the public APIs: search market maps with GET https://dealroom.co/api/marketmaps?q=AI, pull live funding with GET https://dealroom.co/api/live-signals, and build a branded chart — GET https://dealroom.co/api/create-chart returns the manual, then POST a spec. Explore, build something, and tell me what worked and what didn't.
Tools you can call
Live JSON/HTML endpoints on https://dealroom.co. No auth, CORS-enabled — call them directly from any client.
Search 170+ curated sector landscapes by keyword or tag. Returns ranked maps with company & segment counts and URLs. Add format=llms for Markdown.
curl "https://dealroom.co/api/marketmaps?q=fintech&limit=5"
The latest venture funding rounds — company, city, stage, lead investors and amount.
curl "https://dealroom.co/api/live-signals?limit=20"
Recent Dealroom research reports with direct PDF links: {id, title, slug, date, pdfUrl}.
curl "https://dealroom.co/api/list-reports"
Community- and partner-built market maps, with source attribution and company counts.
curl "https://dealroom.co/api/third-party-maps"
GET returns a self-describing manual — every chart type, every field, and ready-to-POST example payloads. POST a spec and get back a standalone, on-brand Dealroom chart as HTML (with a built-in high-res PNG export). Start with the GET.
# 1. read the manual (chart types, fields, examples)
curl "https://dealroom.co/api/create-chart"
# 2. make a chart
curl -X POST "https://dealroom.co/api/create-chart" \
-H "Content-Type: application/json" \
-d '{"chartType":"bar","headline":"Top 5 countries by VC funding",
"labels":["US","UK","France","Germany","Sweden"],
"datasets":[{"label":"Funding","data":[120,21,13,9,7]}],
"unit":"$B","source":"Dealroom.co"}'
Also available (need a valid Dealroom slug/entity): /api/sentiment?entity=Spotify (AI-synthesized X sentiment) and /api/entity-news?path=<slug>&type=company. These are beta and depend on upstream data.
Make a chart, get an image
Every chart from /api/create-chart renders the Dealroom design system (typography, palette, logo) from a single contract — so an agent gets publication-ready output, not a generic bar chart.
- Pick a chart type — 15 standard + 13 specialty types (market map, treemap, scatter, choropleth, marimekko, bubble…). The GET manifest lists them with examples.
- Export a PNG — every chart card has a PNG button and a
Cmd/Ctrl+Shift+Sshortcut; from a headless browser callwindow.__chartPng(). Full guide: /docs/agent-chart-png-guide.md. - Design in the browser — the Chart Studio is the visual editor on top of the same API.
Machine-readable data & discovery
Where an agent looks first, and the structured data behind every page.
- /llms.txt — the master index: tools, market maps, investors, rankings and multiples.
- /sitemap.xml — sitemap index (companies, investors, countries, cities, regions, sectors, universities, landings).
- /charts/landscapes-manifest.json — every market map with tags, counts and URLs.
- /investors/manifest.json — investor profiles; each has a Markdown twin at
/investors/{slug}.md(e.g. sequoia-capital.md). - /resources/multiples-data.json — the EV/Revenue multiples dataset (4,581 exit & VC rounds).
- Flagship pages (multiples, Power Law ranking) ship Schema.org
Dataset,ItemListandFAQPageJSON-LD.
Welcoming to AI crawlers by design — see /robots.txt. This is beta and evolving; if something's missing or broken, that's useful feedback.