Skip to main content
GET
/
v1
/
observability
/
{workspaceId}
/
dependencies
Get the workspace dependency graph
curl --request GET \
  --url https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/observability/{workspaceId}/dependencies \
  --header 'Authorization: Bearer <token>'
{
  "workspaceId": "<string>",
  "period": {
    "start": "2023-11-07T05:31:56Z",
    "end": "2023-11-07T05:31:56Z"
  },
  "graph": {
    "nodes": [
      {
        "id": "<string>",
        "type": "automation",
        "label": "<string>",
        "appInstance": "<string>",
        "automationSlug": "<string>"
      }
    ],
    "edges": [
      {
        "source": "<string>",
        "target": "<string>",
        "type": "uses_app_automation",
        "calls": 123
      }
    ]
  },
  "stats": {
    "nodeCount": 123,
    "edgeCount": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

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

Authorizations

Authorization
string
header
required

User session JWT or instance API key (iak_*). Send as Authorization: Bearer <token>.

Path Parameters

workspaceId
string
required

Workspace identifier.

Maximum string length: 64
Pattern: ^[a-zA-Z0-9_-]+$

Query Parameters

period
enum<string>

Preset window (default 7d).

Available options:
1h,
24h,
7d,
30d
Maximum string length: 8
start
string<date-time>

Custom range start.

Maximum string length: 64
end
string<date-time>

Custom range end.

Maximum string length: 64
dateStart
string<date-time>

Legacy alias for start.

Maximum string length: 64
dateEnd
string<date-time>

Legacy alias for end.

Maximum string length: 64

Response

Dependency graph.

workspaceId
string
period
object
graph
object
stats
object