Skip to main content
GET
/
deals
/
{id}
/
investors
Get investors for a specific deal
curl --request GET \
  --url https://tryfundable.ai/api/v1/deals/{id}/investors \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "investors": [
      {
        "id": "c5a3f6ac-f6c9-4686-aa6e-12aeb7419b82",
        "name": "Sequoia Capital",
        "is_debt_investor": false,
        "lead_investor": true,
        "angel_investor": false,
        "personnel": [
          "John Smith"
        ],
        "financing_type": "SERIES_A",
        "domain": "sequoiacap.com",
        "linkedin": "https://linkedin.com/company/sequoia-capital",
        "crunchbase": "https://crunchbase.com/organization/sequoia-capital"
      }
    ]
  },
  "meta": {
    "page": 0,
    "page_size": 1,
    "credits_used": 1,
    "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]

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