Extract Shareholder Graph (sync)
Extract a shareholder graph synchronously. Blocks for up to 300 seconds. Only `maxDepth=1` is supported for sync requests — deeper graphs exceed the 300s budget. Requests with `maxDepth>1` are rejected with 400; use the async `POST /v2/companies/shareholder-graph` endpoint for multi-level extraction.
The async POST /v2/companies/shareholder-graph
endpoint is the preferred method. Government registries frequently time out —
async with webhooks or polling handles those failures gracefully.
Authorization
api_key Sign up at Kausate.com to get an API key
In: header
Query Parameters
Mark as a batch/backfill request. Batch requests run at lowest priority to avoid blocking interactive queries.
falseHeader Parameters
"2026-05-01"dateOptional customer ID
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://api.kausate.com/v2/companies/shareholder-graph/sync" \ -H "Kausate-Version: 2026-05-01" \ -H "Content-Type: application/json" \ -d '{ "kausateId": "string" }'{
"orderId": "string",
"kausateId": "string",
"customerReference": "string",
"customerId": "string",
"status": "running",
"requestTime": "2019-08-24T14:15:22Z",
"responseTime": "2019-08-24T14:15:22Z",
"result": {
"type": "shareholderGraph",
"graph": {
"nodes": [
{
"id": "string",
"type": "company",
"data": {
"kausateId": "string",
"legalName": "string",
"jurisdictionCode": "ec",
"identifiers": [
{
"value": "string",
"type": "string",
"source": "string",
"description": "string",
"extra": {}
}
],
"cumulativeOwnership": {
"exact": 100,
"maximum": 100,
"minimum": 100,
"exclusiveMinimum": 100,
"exclusiveMaximum": 100
},
"status": {
"original": "string",
"normalized": "active",
"isActive": true
},
"sourceIds": [
"string"
]
}
}
],
"edges": [
{
"id": "string",
"source": "string",
"target": "string",
"data": {
"interestType": "shareholding",
"interestDetails": "string",
"role": {
"original": "string",
"englishTranslation": "string",
"iso5009RoleCode": "string"
},
"percentage": {
"exact": 100,
"maximum": 100,
"minimum": 100,
"exclusiveMinimum": 100,
"exclusiveMaximum": 100
},
"shareClass": "string",
"numberOfShares": 0,
"totalNominalValue": {
"amount": "string",
"iso4217CurrencyCode": "string"
},
"sourceId": "string"
}
}
],
"rootCompanyId": "string",
"maxDepth": 0,
"extractionTimestamp": "string",
"sources": {
"property1": {
"type": "selfDeclaration",
"name": "string",
"jurisdictionCode": "ec",
"retrievalTime": "string",
"downloadUrl": "string",
"fileHash": "string",
"fileName": "string",
"date": {
"original": "string",
"normalized": "string"
}
},
"property2": {
"type": "selfDeclaration",
"name": "string",
"jurisdictionCode": "ec",
"retrievalTime": "string",
"downloadUrl": "string",
"fileHash": "string",
"fileName": "string",
"date": {
"original": "string",
"normalized": "string"
}
}
}
}
},
"error": "string",
"currentActivity": "string"
}{
"detail": "Invalid company ID format"
}{
"detail": "Invalid API key"
}{
"detail": "Insufficient credits. Required: 10, Available: 5"
}{
"detail": "Company not found"
}{
"detail": "Request timed out after 300 seconds. The workflow has been cancelled."
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}{
"detail": "An internal error occurred"
}Last updated on