GET
/
datasets
/
companies
/
{companyId}
/
graph
curl --request GET \
  --url https://api.tic.io/datasets/companies/{companyId}/graph \
  --header 'x-api-key: <api-key>'
{
  "edges": [
    {
      "id": 123,
      "start": 123,
      "end": 123,
      "label": "<string>",
      "properties": {}
    }
  ],
  "nodes": [
    {
      "id": 123,
      "label": "<string>",
      "properties": {}
    }
  ]
}

Returns a graph with nodes and edges representing the relationships between persons and companies and optionally beneficial owners.

Can be used by graph visualization such as:

The properties for nodes and edges are dynamic and can be used to control styling and highlighting of nodes.

Authorizations

x-api-key
string
header
required

Path Parameters

companyId
integer
required

The company id

Query Parameters

includeBeneficialOwner
boolean
default:true

Include or exclude beneficial owner

Response

200 - application/json
OK
edges
object[] | null
nodes
object[] | null