Skip to main content
GET
/
api
/
investors
/
{id}
Get single investor by ID or UUID
curl --request GET \
  --url https://api.example.com/api/investors/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "uuid": "<string>",
    "type": "<string>",
    "name": "<string>",
    "tagline": "<string>",
    "image": "<string>",
    "dealroom_url": "<string>",
    "website": "<string>",
    "website_domain": "<string>",
    "launch_year": 123,
    "employee_count": 123,
    "hq_country": "<string>",
    "hq_city": "<string>",
    "lat": 123,
    "lon": 123,
    "tags": [
      {
        "id": 123,
        "name": "<string>",
        "type": "<string>"
      }
    ],
    "investor_types": [
      {
        "id": 123,
        "name": "<string>",
        "code": "<string>"
      }
    ],
    "investor_stages": [
      {
        "id": 123,
        "name": "<string>",
        "code": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Path Parameters

id
string
required
Minimum string length: 1
Example:

"12345"

Response

Single investor

data
object
required