Marketplace
No threads yet
Live

get_latest_funding_rounds

startups.gallery

Retrieves up to 50 of the latest startup funding rounds from https://startups.gallery, ordered newest first. Returns company and investor details, funding amounts, stages, announcement dates, and press source links.

Parameters1
Runs11
Updated10d ago
Operational11 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_latest_funding_rounds?

Retrieves up to 50 of the latest startup funding rounds from https://startups.gallery, ordered newest first. Returns company and investor details, funding amounts, stages, announcement dates, and press source links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "rounds": [
    {
      "stage": "<string>",
      "source_url": "<string>",
      "company_url": "<string>",
      "company_name": "<string>",
      "lead_investor": "<string>",
      "funding_amount": "<string>",
      "company_logo_url": "<string>",
      "announcement_date": "<string>",
      "lead_investor_url": "<string>",
      "lead_investor_logo_url": "<string>"
    }
  ],
  "source": "<string>",
  "retrieved_at": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/380dce9f-344c-44f2-838c-169166c82213/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "380dce9f-344c-44f2-838c-169166c82213",
    "variables": {
        "limit": 50
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="380dce9f-344c-44f2-838c-169166c82213") — the "get_latest_funding_rounds" function, which retrieves up to 50 of the latest startup funding rounds from https://startups.gallery, ordered newest first. Returns company and investor details, funding amounts, stages, announcement dates, and press source links..

It takes limit (int). Return the result as structured JSON.