Skip to main content
GET
/
v1
/
projects
/
{project_id}
/
graph
Get Graph
curl --request GET \
  --url https://api.ontora.com/v1/projects/{project_id}/graph \
  --header 'Authorization: Bearer <token>'
{
  "nodes": [
    {
      "key": "<string>",
      "node_type": "<string>",
      "name": "<string>",
      "properties": {},
      "ukl_ref": "<string>",
      "status": "<string>",
      "source_message_id": "<string>",
      "synced_to_ukl": true,
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "edges": [
    {
      "from_key": "<string>",
      "to_key": "<string>",
      "rel_type": "<string>",
      "properties": {},
      "source_message_id": "<string>",
      "created_at": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.ontora.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string<uuid>
required

Response

Successful Response

nodes
GraphNodeOut · object[]
required
edges
GraphEdgeOut · object[]
required