Data API

RaiseGraph Data API

Programmatic access to our investor database, firm data, fund vehicles, and sector heat analysis. Available on the Raise Mode plan.

Authentication

All API requests require an API key passed via the x-api-key header.

curl -H "x-api-key: YOUR_API_KEY" /api/v1/investors

Rate Limits

10,000

Requests / month

100

Max per page

JSON

Response format

Endpoints

GET/api/v1/investors

Search and list investors with filtering

Query Parameters

q (name search)sectorstagetemperature (hot/warm/cool/cold)pagelimit (max 100)

Example Request

curl -H "x-api-key: YOUR_KEY" \
  "/api/v1/investors?sector=AI%20/%20ML&limit=5"

Response

{
  "data": [
    {
      "id": "uuid",
      "name": "Jane Smith",
      "title": "Partner",
      "firmName": "Acme Ventures",
      "locationCity": "San Francisco",
      "stageFocus": ["Seed", "Series A"],
      "sectorFocus": ["AI / ML", "SaaS"],
      "checkMin": 500, "checkMax": 5000,
      "activityScore": 88,
      "fundTemperature": "hot"
    }
  ],
  "meta": { "total": 245, "page": 1, "limit": 5 }
}
GET/api/v1/firms

List all venture capital firms

Query Parameters

pagelimit (max 100)

Example Request

curl -H "x-api-key: YOUR_KEY" \
  "/api/v1/firms?limit=10"

Response

{
  "data": [
    {
      "id": "uuid",
      "name": "Acme Ventures",
      "type": "venture capital",
      "aum": 500000,
      "locationCity": "San Francisco"
    }
  ],
  "meta": { "total": 20, "page": 1 }
}
GET/api/v1/funds

List all tracked fund vehicles

Query Parameters

pagelimit (max 100)

Example Request

curl -H "x-api-key: YOUR_KEY" \
  "/api/v1/funds"

Response

{
  "data": [
    {
      "id": "uuid",
      "name": "Acme Fund III",
      "firmId": "uuid",
      "reportedSize": 150000,
      "deployPercent": 45,
      "vintage": 2023
    }
  ],
  "meta": { "total": 20, "page": 1 }
}
GET/api/v1/sector-heat

Get sector heat map data with deal counts and capital flow

Example Request

curl -H "x-api-key: YOUR_KEY" \
  "/api/v1/sector-heat"

Response

{
  "data": [
    {
      "sector": "AI / ML",
      "dealCount": 158,
      "investorCount": 22,
      "totalCapital": 43700,
      "heatIndex": 50
    }
  ],
  "meta": { "total": 24 }
}

Error Codes

401UnauthorizedMissing or invalid API key
403ForbiddenAPI key does not have access to this resource
404Not FoundResource does not exist
429Too Many RequestsRate limit exceeded (10,000/month)
500Internal Server ErrorAn unexpected error occurred

Error Response Format

{
  "error": "Rate limit exceeded",
  "code": 429
}