Get investor profile
GET
/api/v1/investor/{id}Return enriched profile for one investor including type, geography, check size range, and portfolio stats.
Request - cURL
curl -s "https://latestrounds.com/api/v1/investor/sequoia" \
-H "Authorization: Bearer YOUR_API_KEY"Request - JavaScript (fetch)
const res = await fetch("https://latestrounds.com/api/v1/investor/sequoia", {
headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();Request - Python
import requests
resp = requests.get(
"https://latestrounds.com/api/v1/investor/sequoia",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=30,
)
print(resp.json())Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | yes | Investor ID or slug, e.g. sequoia. |
Query parameters
No fields.
Headers
| Name | Value | Required |
|---|---|---|
| Authorization | Bearer YOUR_API_KEY | yes |
Response fields
| Field | Type | Description |
|---|---|---|
| data.id | string | Investor ID. |
| data.canonical_name | string | Normalized investor name. |
| data.investor_type | string | vc, angel, corporate, accelerator, etc. |
| data.country | string | Primary country. |
| data.check_size_min_usd | number | Minimum check size in USD. |
| data.check_size_max_usd | number | Maximum check size in USD. |
| data.portfolio_stats | object | deal_count, total_invested_usd, deal_types. |
Error responses
| Status | Code | Description |
|---|---|---|
| 404 | not_found | Investor ID or slug does not exist. |
| 401 | unauthorized | Missing or invalid API key. |
Sample response
200 OK
{
"data": {
"id": "inv_100",
"slug": "sequoia",
"canonical_name": "Sequoia Capital",
"investor_type": "vc",
"country": "United States",
"check_size_min_usd": 1000000,
"check_size_max_usd": 50000000,
"portfolio_stats": { "deal_count": 104, "total_invested_usd": 2400000000 }
}
}