Skip to main content
GET
/
investor
/
search
Search investors by name, domain, LinkedIn, or Crunchbase
curl --request GET \
  --url https://tryfundable.ai/api/v1/investor/search \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "investors": [
      {
        "id": "770e8400-e29b-41d4-a716-446655440000",
        "guru_permalink": "acme-ventures",
        "name": "Acme Ventures",
        "description": "Early-stage venture capital firm focused on AI startups",
        "image": "https://example.com/acme-ventures-logo.png",
        "relevance_score": 0.92,
        "domain": "acmeventures.com",
        "website": "https://acmeventures.com"
      },
      {
        "id": "880e8400-e29b-41d4-a716-446655440001",
        "guru_permalink": "acme-capital",
        "name": "Acme Capital",
        "description": "Growth-stage investment firm",
        "image": "https://example.com/acme-capital-logo.png",
        "relevance_score": 0.85,
        "domain": "acmecap.com",
        "website": "https://acmecap.com"
      }
    ]
  },
  "meta": {
    "total_count": 2,
    "page": 0,
    "page_size": 1,
    "credits_used": 0
  }
}

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]

Query Parameters

name
string

Investor name (fuzzy search with relevance scoring)

domain
string

Investor website domain (exact match)

linkedin
string

Full LinkedIn company URL (e.g., https://linkedin.com/company/sequoia-capital). Bare slugs like "sequoia-capital" are rejected — a full URL is required.

crunchbase
string

Full Crunchbase organization URL (e.g., https://crunchbase.com/organization/sequoia-capital). Bare slugs like "sequoia-capital" are rejected — a full URL is required.

Response

Successful search results

success
boolean
required
Example:

true

data
object
required
meta
object
required