Discover/Startups API
live

Startups APIstartups.gallery

Monitor newly funded startups in real-time with detailed information on funding rounds, investment amounts, stages, and lead investors. Track emerging companies and their capital raises to stay informed about market trends and investment activity.

This API takes change requests — .
Endpoint health
monitored
list_funding_rounds
Checks pendingself-healing
Endpoints
1
Updated
4h ago
This call costs2 credits / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/ddad8f78-6b9f-433b-844f-69cda659c27c/<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/ddad8f78-6b9f-433b-844f-69cda659c27c/list_funding_rounds' \
  -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 startups-gallery-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.

"""Walkthrough: startups_gallery_api SDK — bounded, re-runnable; every call capped."""
from parse_apis.startups_gallery_api import StartupsGallery, ParseError

client = StartupsGallery()

# List the latest funding rounds, capped at 5.
for round in client.funding_rounds.list(limit=3):
    print(round.company, round.amount, round.stage, round.date)

# Take one item and inspect its full details.
latest = client.funding_rounds.list(limit=1).first()
if latest:
    print(latest.company, latest.amount, latest.stage, latest.lead_investor, latest.source_url)

# Typed error handling around a real call.
try:
    for r in client.funding_rounds.list(limit=2):
        print(r.company, r.lead_investor)
except ParseError as e:
    print(f"error: {e}")

print("exercised: funding_rounds.list")
All endpoints · 1 totalmissing one? ·

Retrieve the latest funding rounds from startups.gallery. Returns up to 50 recent rounds ordered by date (newest first). Each round includes the company name, funding amount, stage (e.g. Series A, Seed), announcement date, lead investor, and a source link to the press coverage. The site does not support server-side filtering or pagination beyond the first 50 results.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of rounds returned",
    "rounds": "array of funding round objects"
  },
  "sample": {
    "data": {
      "count": 50,
      "rounds": [
        {
          "date": "Aug 4, 2026",
          "stage": "Series B",
          "amount": "$57M",
          "company": "Convex",
          "source_url": "https://news.convex.dev/convex-raises-57m/",
          "company_slug": "convex",
          "investor_slug": "insight-partners",
          "lead_investor": "Insight Partners"
        },
        {
          "date": "Aug 4, 2026",
          "stage": "Series C",
          "amount": "$150M",
          "company": "HappyRobot",
          "source_url": "https://www.businesswire.com/news/home/20260804192350/en/HappyRobot-Raises-%24150-Million-Series-C-to-Build-Enterprise-Superintelligence",
          "company_slug": "happyrobot",
          "investor_slug": "prysm-capital",
          "lead_investor": "Prysm Capital"
        }
      ]
    },
    "status": "success"
  }
}

About the Startups API

The Startups API on Parse exposes 1 endpoint for the publicly available data on startups.gallery. Calls return JSON over HTTPS and are billed per successful response.

Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.