GET a cursor-paged JSON or streaming NDJSON OpenLineage 2-0-2 export.
GET /v1/lineage/export| Parameter | Required | Constraints |
|---|---|---|
workspace_id | Yes | Workspace to export. |
format | No | openlineage; default openlineage. |
output | No | json or ndjson; default json. |
connector_id | No | Include edges touching this connector. |
cursor | No | Opaque cursor from the prior JSON page. |
limit | No | 1 to 2,000; default 500. |
curl --get https://api.embrasure.ai/v1/lineage/export \
--header "Authorization: Bearer $EMBRASURE_API_TOKEN" \
--data-urlencode "workspace_id=workspace-1" \
--data-urlencode "output=json" \
--data-urlencode "limit=500"{
"format": "openlineage",
"as_of": "2026-08-04T20:15:00+00:00",
"events": [],
"next_cursor": null,
"truncated": false,
"skipped_edges": 0
}Set output=ndjson for an application/x-ndjson stream. See the export guide for CLI and MCP alternatives.