Programmatically access and push lineage data.
GET /api/v1/lineage/{assetId}
GET /api/v1/lineage/{assetId}/upstream?depth=3
GET /api/v1/lineage/{assetId}/downstream?depth=3POST /api/v1/lineage
{
"source": "source_asset_id",
"target": "target_asset_id",
"transformation": "SQL or description"
}POST /api/v1/lineage/bulk
[
{"source": "a", "target": "b"},
{"source": "b", "target": "c"}
]Upload your dbt manifest.json to automatically parse model dependencies.