GET
/
api
/
v1
/
datasets
/
{dataset_id}
/
graph
Get Dataset Graph
curl --request GET \
  --url https://api.cognee.ai/api/v1/datasets/{dataset_id}/graph
{
  "nodes": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "label": "<string>",
      "properties": {}
    }
  ],
  "edges": [
    {
      "source": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "target": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "label": "<string>"
    }
  ]
}

Path Parameters

dataset_id
string<uuid>
required

Response

200
application/json

Successful Response

The response is of type object.