v1
latestOpenAPI 3.1.02026-07-2652038.3 KBAPI v1
Entities
Entity Introspection
Get the field schema for a real-world entity by its numeric UUID — the schema spans many domains, illustrative not exhaustive. Use to look up / find out what an entity is queryable for before pulling its profile. Returns the available properties, relationships, and numerical observations you can request from entity_retrieval.
Examples:
GET /entities/c6772802-bdbc-4778-91e9-cd3d27d008d5/introspection
GET /entities/e5bb591a-d308-4aa5-9672-96046d366cde/introspection
Use this when: You have an entity UUID and need to discover which attributes and relationships exist before querying. Use entity_retrieval to fetch data, or entity_search first if you only have a name.
get/v1/entities/{entity_id}/introspection
Path parameters
entity_idstring uuid required
Response
Successful Response
Example response
{
"numerical_observations": {
"FinancialMetric": [
{
"cadence": "i",
"description": "Amount of currency on hand as well as demand deposits with banks or financial institutions. Includes other kinds of accounts that have the general characteristics of demand deposits. Also includes short-term, highly liquid investments that are both readily convertible to known amounts of cash and so near their maturity that they present insignificant risk of changes in value because of changes in interest rates. Excludes cash and cash equivalents within disposal group and discontinued operation.",
"id": "1d3eae40-0ba8-5baf-9907-6a4823b067bb",
"name": "Cash and Cash Equivalents, at Carrying Value",
"taxonomy": "us-gaap",
"unit": "USD"
}
]
},
"properties": [
"cik",
"headquarters_address",
"lei",
"registered_address",
"founding_date",
"esg_policy",
"legal_name",
"employee_count",
"bics",
"name",
"aliases",
"id"
],
"relationships": {
"incoming": [
"IS_CFO_OF",
"IS_SUBSIDIARY_OF",
"IS_BOARD_MEMBER_OF",
"IS_BENEFICIARY_OWNER_OF",
"IS_CEO_OF"
],
"outgoing": [
"IS_ULTIMATE_PARENT_OF",
"IS_REGISTERED_IN",
"OPERATES_IN_INDUSTRY",
"IS_DIRECT_PARENT_OF",
"IS_BENEFICIARY_OWNER_OF",
"HAS_HEADQUARTERS_IN",
"PARTICIPATES_IN_CORPORATE_EVENT"
]
}
}