Skip to main content
GET
/
api
/
founders
/
{id}
Get single founder by ID or UUID
curl --request GET \
  --url https://api.example.com/api/founders/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "uuid": "<string>",
    "name": "<string>",
    "tagline": "<string>",
    "image": "<string>",
    "dealroom_url": "<string>",
    "gender": "<string>",
    "is_serial_founder": true,
    "is_super_founder": true,
    "is_promising_founder": true,
    "is_strong_founder": true,
    "launch_year": 123,
    "hq_country": "<string>",
    "hq_city": "<string>",
    "tags": [
      {
        "id": 123,
        "name": "<string>",
        "type": "<string>"
      }
    ],
    "education": [
      {
        "university_id": 123,
        "university_name": "<string>",
        "degree": "<string>",
        "year_start": 123,
        "year_end": 123,
        "majors": [
          "<string>"
        ]
      }
    ],
    "companies": [
      {
        "entity_id": 123,
        "entity_name": "<string>",
        "is_founder": true,
        "is_past": true,
        "raw_title": "<string>",
        "year_start": 123,
        "year_end": 123
      }
    ],
    "backgrounds": [
      {
        "id": 123,
        "name": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Path Parameters

id
string
required
Minimum string length: 1
Example:

"12345"

Response

Single founder

data
object
required