Skip to main content
GET
/
v1
/
knowledge
/
entities
/
{entity_id}
Entities
curl --request GET \
  --url https://api.cala.ai/v1/knowledge/entities/{entity_id} \
  --header 'X-API-KEY: <api-key>'
{
  "birth_year": 1856,
  "education": [
    "Austrian Polytechnic Institute in Graz",
    "University of Prague"
  ],
  "id": 3025,
  "name": "Nikola Tesla",
  "nationality": "Serbian-American"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

entity_id
integer
required

Response

Successful Response

Public figures: executives, founders, politicians, investors, etc.

id
integer
required

The ID of the entity

Example:

3025

name
string
required

The name of the entity

Example:

"Nikola Tesla"

entity_type
string
required

The type of the entity

Allowed value: "PERSON"
image_url
string | null

The image URL of the entity

Example:

null

current_title
string | null

The current professional title (e.g., CEO, President, etc.)

Example:

null

current_organization
string | null

The current organization the person is associated with

Example:

null

nationality
string | null

The nationality of the person

Example:

"Serbian-American"

education
string[] | null

The educational background (universities/degrees)

Example:
[
"Austrian Polytechnic Institute in Graz",
"University of Prague"
]
birth_year
integer | null

The birth year of the person

Example:

1856