Skip to main content
GET
/
analyses
list analyses
curl --request GET \
  --url https://api.example.com/analyses \
  --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

Query Parameters

page
integer | null
default:0
offset
integer | null
default:0
page_size
integer | null
default:20
project_id
string | null
project_slug
string | null
user_id
string | null
trigger
enum<string> | null
Available options:
manual_run,
chat,
manual_edit,
fork,
merge
code_version_id
string | null
root_node_id
string | null
is_leaf
boolean | null
is_root
boolean | null
order_by
enum<string> | null
default:created_at
Available options:
created_at,
updated_at
order
enum<string> | null
default:desc
Available options:
desc,
asc

Response

Successful Response

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