Skip to main content
GET
/
investor
Get investor details and statistics by identifier
curl --request GET \
  --url https://tryfundable.ai/api/v1/investor \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "investor": {
      "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
        }
      ]
    }
  },
  "meta": {
    "page": 0,
    "page_size": 1,
    "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]

Query Parameters

id
string<uuid>

Investor UUID

domain
string

Investor domain or full URL (e.g., "sequoiacap.com" or "https://sequoiacap.com") — URLs are automatically parsed to extract the domain

linkedin
string

LinkedIn company URL (e.g., "https://linkedin.com/company/sequoia-capital")

crunchbase
string

Crunchbase organization URL (e.g., "https://crunchbase.com/organization/sequoia-capital")

Response

Successful response with investor data

success
boolean
required
Example:

true

data
object
required
meta
object
required