Skip to main content
GET
/
analyses
/
{analysis_node_id}
/
dag
get analysis DAG
curl --request GET \
  --url https://api.example.com/analyses/{analysis_node_id}/dag \
  --header 'Authorization: Bearer <token>'
{
  "page": 123,
  "page_size": 123,
  "more": true,
  "total_pages": 123,
  "results": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "user": "<string>",
      "team_id": "<string>",
      "team_slug": "<string>",
      "project_id": "<string>",
      "project_slug": "<string>",
      "is_owner": true,
      "trigger": "<string>",
      "n_findings": 123,
      "n_scopes": 123,
      "code_version_id": "<string>",
      "is_leaf": true,
      "is_public": true,
      "root_node_id": "<string>",
      "n": 123,
      "parent_node_id": "<string>",
      "children": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in Bearer token format

Path Parameters

analysis_node_id
string
required

Response

Successful Response

page
integer
required
page_size
integer
required
more
boolean
required
total_pages
integer
required
results
AnalysisNodeIndex · object[]