Skip to main content
POST
/
investors
List and filter investors
curl --request POST \
  --url https://tryfundable.ai/api/v1/investors \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "identifiers": {
    "domains": [
      "sequoiacap.com"
    ]
  },
  "investor": {
    "locations": [
      "san-francisco-california"
    ]
  },
  "company_investments": {
    "industries": [
      "artificial-intelligence"
    ],
    "financing_types": [
      {
        "type": "SERIES_A"
      },
      {
        "type": "SERIES_B"
      }
    ],
    "deal_start_date": "2023-01-01"
  },
  "page": 0,
  "page_size": 25,
  "sort_by": "most_recent_deal"
}
'
{
  "success": true,
  "data": {
    "investors": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "guru_permalink": "<string>",
        "total_deal_count": 123,
        "lead_deal_count": 123,
        "recent_deal_count": 123,
        "domain": "<string>",
        "website": "<string>",
        "linkedin": "<string>",
        "pitchbook": "<string>",
        "crunchbase": "<string>",
        "description": "<string>",
        "legal_name": "<string>",
        "num_employees": "101-250",
        "investment_stage": "Series A",
        "contact_email": "jsmith@example.com",
        "contact_phone": "<string>",
        "location": {
          "region": {
            "name": "North America",
            "permalink": "north-america"
          },
          "country": {
            "name": "United States",
            "permalink": "united-states"
          },
          "state": {
            "name": "California",
            "permalink": "california"
          },
          "city": {
            "name": "San Francisco",
            "permalink": "san-francisco-california"
          }
        },
        "lead_deal_count_last_12_months": 123,
        "most_recent_deal_date": "2023-11-07T05:31:56Z",
        "top_industries": [
          {
            "name": "<string>",
            "permalink": "<string>",
            "count": 123
          }
        ],
        "top_locations": [
          {
            "name": "<string>",
            "full_name": "<string>",
            "permalink": "<string>",
            "type": "<string>",
            "count": 123
          }
        ],
        "top_round_types": [
          {
            "type": "<string>",
            "count": 123
          }
        ],
        "filtered_deal_count": 123,
        "filtered_lead_count": 123
      }
    ]
  },
  "meta": {
    "total_count": 142,
    "page": 0,
    "page_size": 25,
    "credits_used": 10,
    "credit_source": "monthly",
    "monthly_credits_remaining": 990,
    "purchased_credits_remaining": 500
  }
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format. Format: Authorization: Bearer vg_your_api_key_here

API keys follow the pattern: vg_[12_hex_chars]_[32_base64url_chars]

Body

application/json

Request body for the POST /investors endpoint

identifiers
object

Investor lookup filters (OR'd together)

investor
object

Investor entity-level filters

company_investments
object

Portfolio filters (filter by companies the investor has invested in)

page
integer
default:0

Page number (0-based)

Required range: x >= 0
page_size
integer
default:10

Number of results per page (max 100)

Required range: 1 <= x <= 100
sort_by
enum<string>
default:most_recent_deal

Sort order for results.

  • most_recent_deal — Date of most recent investment (newest first)
  • recent_deals — Deals in last 12 months (highest first)
  • deals_led_ltm — Lead deals in last 12 months (highest first)
  • total_deals — All-time deal count (highest first)
  • matching_deals — Deals matching portfolio filters (highest first)
Available options:
most_recent_deal,
recent_deals,
deals_led_ltm,
total_deals,
matching_deals

Response

Successful response with paginated investor list

success
boolean
required
Example:

true

data
object
required
meta
object
required