# VenturePulse Funding Search

> VenturePulse Funding Search is a paid API for AI agents from venturepulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Searches real-time VC funding-round intelligence by sector, stage, and region, returning recent deals, active investors, valuation benchmarks, and funding climate signals.

## Facts

- Endpoint: GET https://venturepulse.theaslangroupllc.com/api/startup/funding-search
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/venturepulse-funding-search-2a31ac7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hX7pjmYde0Esqrsy2e_E0

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 venturepulse-funding-search-2a31ac7e
```

Example prompt: Pull up recent Series A funding rounds in B2B SaaS from the last 60 days, focused on North America — I want to see deal sizes, active lead investors, and what valuations look like right now.

## When to prefer this

Use this endpoint when you need current, deal-level VC funding intelligence filtered by sector, stage, and geography — especially for founders benchmarking their raise or VCs scouting competitive activity. Prefer this over general financial data APIs when you need startup-specific funding rounds with investor-level detail and valuation context.

## Known failure modes

- No matching deals found for the given sector/stage/region combination — returns empty results
- Invalid or unsupported sector/stage/region parameter — returns 400 Bad Request
- Payment not processed or insufficient USDC balance — returns 402 Payment Required
- Rate limiting exceeded — returns 429 Too Many Requests
- Data freshness lag for very recent deals not yet indexed — returns partial or stale results

## How this service works

Real-time VC funding-round intelligence by sector, stage and region — recent deals, active investors, valuation benchmarks and funding climate. For founder and VC agents.

## Output

Returns a list of recent funding rounds matching the query filters, including deal amounts, investor names, startup names, sectors, stages, regions, valuation benchmarks, and an overall funding climate assessment for the queried segment.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | pt | it | nl | ko | zh | ar (default: en)"
      },
      "stage": {
       "type": "string",
       "description": "pre-seed | seed | series-a | series-b | growth | any (default: any)"
      },
      "region": {
       "type": "string",
       "description": "us | eu | uk | apac | latam | mena | africa | global (default: global)"
      },
      "sector": {
       "type": "string",
       "description": "fintech | saas | biotech | ai | climate | consumer | b2b | deeptech | any (default: any)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "stage": "seed",
  "region": "eu",
  "sector": "fintech",
  "summary": "EU fintech seed funding remains active in 2026 with a concentration in embedded finance and B2B payments...",
  "recent_rounds": [
   {
    "date": "2026-03",
    "stage": "seed",
    "company": "Payrails",
    "notable": "Infrastructure play for enterprise payment orchestration",
    "amount_usd": "$6M",
    "lead_investor": "HV Capital"
   }
  ],
  "investor_sentiment": "warm"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/venturepulse-funding-search-2a31ac7e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from venturepulse.theaslangroupllc.com](https://www.zero.xyz/host/venturepulse.theaslangroupllc.com/llms.txt)
