For the complete documentation index, see llms.txt. This page is also available as Markdown.

Data Lineage

List lineage events

get

Retrieves all lineage events for the current user

Responses
200

Lineage events retrieved

application/json

List of lineage events for the current user

graph_datastring · nullableOptional

Serialized graph data

graph_hashstringRequired

Unique hash of the graph

graph_idinteger · nullableOptional

Associated graph ID

inserted_atstring · date-timeRequired

Creation timestamp

messagestring · nullableOptional

Additional message

statusstring · enumRequired

Current status of the lineage event

Possible values:
task_referencestring · nullableOptional

Reference to the background task

typestring · nullableOptional

Type of lineage event

user_idintegerRequired

User who created the event

get/api/lineage_events

Export graph as CSV

post

Exports a graph's data as a ZIP archive containing CSV files.

Body
idany ofRequired

Graph ID to export as CSV (string or integer)

stringOptional
or
integerOptional
Responses
200

CSV file downloaded

text/csv
string · binaryOptional
post/api/graphs/csv

Create graph

post

Creates a new graph for lineage or impact analysis.

  • type: "sample" → no requiere ids

  • type: "lineage" o "impact" → requiere ids

Body
header_labelsboolean · nullableOptional

Include header labels in the response

levelsinteger · nullableOptional

Number of levels to traverse

typestring · enumRequired

Type of graph to generate

Possible values:
Responses
201

Graph created

application/json

Response for graph creation. Can be completed (201) or processing (202)

or
post/api/graphs

Get graph

get

Retrieves a graph by its ID, automatically recalculating it if it is stale.

Path parameters
idstringRequired

Graph ID

Responses
200

Graph retrieved

application/json
get/api/graphs/{id}

Get graph by hash

get

Retrieves a graph by its hash value, returning its current data or processing status.

Path parameters
hashstringRequired

Graph hash

Responses
200

Graph retrieved

application/json

Response for graph retrieval by hash. Can be completed (200) or processing (202)

or
get/api/graphs/hash/{hash}

Last updated