Skip to main content
GET
/
applications
/
{application_id}
/
workflow-runs
List application workflow runs
curl --request GET \
  --url https://api.trymaitai.ai/api/v1/applications/{application_id}/workflow-runs \
  --header 'X-Maitai-Api-Key: <api-key>'
{
  "data": [
    {
      "id": 1,
      "application_id": 42,
      "status": "COMPLETED",
      "date_created": 1706000000
    }
  ],
  "pagination": {
    "total": 10,
    "offset": 0,
    "limit": 25
  }
}

Authorizations

X-Maitai-Api-Key
string
header
required

Your Maitai API key from the Portal.

Path Parameters

application_id
integer
required

Query Parameters

offset
integer
default:0

Number of items to skip.

Required range: x >= 0
limit
integer
default:25

Maximum number of items to return.

Required range: 1 <= x <= 100

Response

200 - application/json

Paginated results.

data
any[]
pagination
object