Skip to main content
GET
/
api
/
entities
/
{id}
Get single entity by ID or UUID
curl --request GET \
  --url https://api.example.com/api/entities/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "uuid": "<string>",
    "type": "<string>",
    "is_company": true,
    "is_investor": true,
    "is_university": true,
    "is_crowdfunding": true,
    "is_government": true,
    "is_non_profit": true,
    "is_founder": true,
    "name": "<string>",
    "tagline": "<string>",
    "image": "<string>",
    "dealroom_url": "<string>",
    "launch_year": 123,
    "hq_country": "<string>",
    "hq_city": "<string>",
    "lat": 123,
    "lon": 123,
    "created_at": "2026-03-21T08:00:00.000Z",
    "updated_at": "2026-03-27T10:30:00.000Z",
    "deleted_at": null,
    "tags": [
      {
        "id": 123,
        "name": "<string>",
        "type": "<string>"
      }
    ],
    "founders": [
      {
        "id": 123,
        "name": "<string>",
        "image": "<string>",
        "dealroom_url": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Path Parameters

id
string
required
Minimum string length: 1
Example:

"12345"

Response

Single entity

data
object
required