Skip to main content
GET
/
investor
/
deals
Get deals for an investor by identifier
curl --request GET \
  --url https://tryfundable.ai/api/v1/investor/deals \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "deals": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "investor_ids": [
          "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        ],
        "financings": [
          {
            "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
            "type": "<string>",
            "size_usd": 123,
            "size_native": 123,
            "currency": "<string>"
          }
        ],
        "round_type": "<string>",
        "extension": true,
        "intermediate": "<string>",
        "pre": true,
        "date": "2023-11-07T05:31:56Z",
        "created_at": "2023-11-07T05:31:56Z",
        "total_round_raised": 123,
        "deal_descriptions": {
          "short_description": "<string>",
          "long_description": "<string>"
        },
        "valuation": {
          "valuation_currency": "<string>",
          "valuation_usd": 123,
          "valuation_native": 123,
          "type": "<string>"
        }
      }
    ]
  },
  "meta": {
    "total_count": 247,
    "page": 0,
    "page_size": 10,
    "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 (full URL required, e.g., "https://linkedin.com/company/sequoia-capital")

crunchbase
string

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

page
integer
default:0

Page number (0-based)

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

Number of results per page (1-100)

Required range: 1 <= x <= 100

Response

Successful response with deals for the investor

success
boolean
required
Example:

true

data
object
required
meta
object
required