Skip to main content
GET
/
deals
/
{id}
/
investors
Get investors for a specific deal
curl --request GET \
  --url https://www.tryfundable.ai/api/v1/deals/{id}/investors \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "investors": [
      {
        "id": "c5a3f6ac-f6c9-4686-aa6e-12aeb7419b82",
        "name": "Sequoia Capital",
        "lead_investor": true,
        "personnel": [
          {
            "id": "f1a2b3c4-d5e6-7890-abcd-ef1234567890",
            "name": "John Smith",
            "linkedin": "https://linkedin.com/in/johnsmith",
            "crunchbase": "https://crunchbase.com/person/john-smith",
            "twitter": "https://x.com/johnsmith"
          }
        ],
        "financing_type": "SERIES_A",
        "domain": "sequoiacap.com",
        "linkedin": "https://linkedin.com/company/sequoia-capital",
        "crunchbase": "https://crunchbase.com/organization/sequoia-capital"
      }
    ],
    "angel_investors": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>",
        "financing_type": "SEED",
        "linkedin": "<string>",
        "crunchbase": "<string>",
        "twitter": "<string>"
      }
    ]
  },
  "meta": {
    "page": 0,
    "page_size": 1,
    "credits_used": 1,
    "credit_source": "monthly",
    "monthly_credits_remaining": 990,
    "purchased_credits_remaining": 500
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tryfundable.ai/llms.txt

Use this file to discover all available pages before exploring further.

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]

Path Parameters

id
string<uuid>
required

Unique identifier for the deal (UUID format)

Example:

"550e8400-e29b-41d4-a716-446655440000"

Response

Successful response with deal investors

success
boolean
required
Example:

true

data
object
required
meta
object
required