Retrieve an entity by its UUID.
Returns detailed information including legal name, industry, founders, executives, headquarters, employee count, and more.
Pass the entity UUID in the URL path (e.g. POST /entities/{entity_id}). Optionally send a JSON body to specify which properties and relationships to return; if omitted, default properties are returned.
Use the Entity Introspection endpoint to see which properties and relationships can be queried for an entity.
Examples (path + optional body):
POST /entities/c6772802-bdbc-4778-91e9-cd3d27d008d5
Optional body: {"properties": ["name", "aliases", "registered_address", "employee_count"], "relationships": {"outgoing": {"IS_ULTIMATE_PARENT": {"limit": 5}}, "incoming": {"IS_CEO_OF": {}}}}
Use this when you already have an entity UUID (from entity_search, knowledge_search, or knowledge_query results) and need the complete profile. Use entity_search first if you only have a name.
Optional query to specify which properties and relationships to return for the entity. If it is not provided, default properties will be returned.
List of entity property names to query
[
"name",
"aliases",
"registered_address",
"employee_count"
]Relationship queries
UUIDs of the numerical observations to query
{
"FinancialMetric": ["a277a751-96fd-5204-b7bc-2238a7cc4188"]
}Successful Response
Response containing full entity profile
The ID of the entity
The name of the entity
The type of the entity
Entity, Organization, Company, EducationalInstitution, Person, GPE, Country, CountryRegion, Industry, FinancialMetric, CorporateEvent, Facility, Location, Product, WorkOfArt, Law, Language List of property names available for this entity (e.g. id, name, currency).
{
"aliases": {
"sources": [],
"value": ["Apple Computer, Inc."]
},
"employee_count": {
"sources": [
{
"date": "2026-03-01",
"document": "https://www.macrotrends.net/stocks/charts/AAPL/apple/number-of-employees",
"name": "Macrotrends | The Long Term Perspective on Markets"
}
],
"value": 164000
},
"name": {
"sources": [
{
"date": "2026-02-26",
"document": {
"endpoint": "https://efts.sec.gov/LATEST/search-index?q=%22APPLE+INC%22",
"params": {},
"response_hash": "3f0354a291ad77088d55bd2577294a85d5ba3c1b9ae0aa5a58c53bb24ed49111"
},
"name": "SEC"
}
],
"value": "APPLE INC"
},
"registered_address": {
"sources": [
{
"date": "2026-02-26",
"document": {
"endpoint": "https://api.gleif.org/api/v1/lei-records?filter%5Bentity.legalName%5D=APPLE+INC&page%5Bsize%5D=20",
"params": {},
"response_hash": "7089723cc94015908b284e2637d34fca0d700bccca36b0f83e4fb6e93c211437"
},
"name": "GLEIF"
}
],
"value": "C/O C T Corporation System, 330 N. Brand Blvd, Suite 700, Glendale, US-CA, 91203, US"
}
}Outgoing and incoming relationship types.
Numerical observations keyed by observation type.
[]