Skip to main content
GET
/
v1
/
analyses
List Analyses
curl --request GET \
  --url https://api.example.com/v1/analyses/ \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "data": [
      {
        "id": "<string>",
        "name": "<string>",
        "is_public": true,
        "sub_analysis_count": 123,
        "status": {
          "overall": "<string>",
          "percentage": 123
        },
        "prompt_ids": [
          "<string>"
        ],
        "last_run_at": 123
      }
    ],
    "total": 123,
    "page": 1,
    "page_size": 50
  },
  "links": {
    "self": {
      "href": "<string>",
      "rel": "<string>",
      "method": "GET",
      "title": "<string>"
    },
    "total": 123,
    "prev": {
      "href": "<string>",
      "rel": "<string>",
      "method": "GET",
      "title": "<string>"
    },
    "next": {
      "href": "<string>",
      "rel": "<string>",
      "method": "GET",
      "title": "<string>"
    }
  },
  "response_type": "AnalysisPaginatedListResponse"
}

Authorizations

X-API-Key
string
header
required

API Key for external integrations (format: greetincs_...)

Query Parameters

page
integer | null

Page number

Required range: x >= 1
page_size
integer | null

Number of analyses per page

Required range: 1 <= x <= 100

Response

Successful Response

Paginated list of analysis summaries.

data
AnalysisPaginatedListData · object
required

Paginated list of analysis summaries data.

response_type
string
default:AnalysisPaginatedListResponse