For AI agents & developers

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.

Paste this to your agent

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.

GET
/api/marketmaps

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"
GET
/api/live-signals

The latest venture funding rounds — company, city, stage, lead investors and amount.

curl "https://dealroom.co/api/live-signals?limit=20"
GET
/api/list-reports

Recent Dealroom research reports with direct PDF links: {id, title, slug, date, pdfUrl}.

curl "https://dealroom.co/api/list-reports"
GET
/api/third-party-maps

Community- and partner-built market maps, with source attribution and company counts.

curl "https://dealroom.co/api/third-party-maps"
GET · POST
/api/create-chart

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.

Machine-readable data & discovery

Where an agent looks first, and the structured data behind every page.

Welcoming to AI crawlers by design — see /robots.txt. This is beta and evolving; if something's missing or broken, that's useful feedback.