# Crunchbase Funding History API (GoCreative)

> Crunchbase Funding History API (GoCreative) is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns full funding-round history and named investor details for a company by name, including round types, announcement dates, lead investors per round, and top overall investors.

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/crunchbase/funding/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crunchbase-funding-history-api-gocreative-fb6ef467
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AIHpK7tD_7dP6WCb6D10S

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability crunchbase-funding-history-api-gocreative-fb6ef467
```

Example prompt: Can you pull up the full funding history for Stripe — all the rounds, when they were announced, who led each one, and the top investors overall?

## When to prefer this

Use this endpoint when you need structured, historical funding-round data including investor names and round types for a specific company, accessed by company name. Prefer this over general web search when you need clean, structured investor data for downstream processing, VC prospecting, or competitive intelligence workflows.

## Known failure modes

- Company name not found in Crunchbase database — returns empty or error response
- Ambiguous company name matches multiple entities — may return wrong company
- Private or stealth companies may have limited or no funding data
- Rate limiting or payment failure via x402 protocol — HTTP 402 returned
- Outdated data if Crunchbase source hasn't been recently synced

## How this service works

Crunchbase Funding History API — real funding-round history + named investors by company NAME: round type, announce date, lead investors per round, plus the top investors overall. SEO: startup funding API, investor database, funding rounds lookup, VC prospecting.

## Output

A structured record containing the company's complete funding-round history: each round's type (Seed, Series A, B, etc.), announcement date, and lead investors per round, plus a ranked list of the company's top overall investors.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crunchbase-funding-history-api-gocreative-fb6ef467/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
