Skip to main content
GET
/
api
/
rpa
/
runs
List RPA runs
curl --request GET \
  --url https://api.getgranite.ai/api/rpa/runs
{
  "runs": [
    {
      "run_id": "<string>",
      "workflow_description": "<string>",
      "workflow_hint": "<string>",
      "status": "<string>",
      "iterations": 123,
      "success": true,
      "created_at": "<string>",
      "completed_at": "<string>"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Query Parameters

limit
integer
default:50

Maximum number of runs to return

Required range: 1 <= x <= 100
offset
integer
default:0

Number of runs to skip

Required range: x >= 0

Response

Successful Response

Paginated list of RPA runs

runs
RPARunDetailResponse · object[]
required

List of RPA runs

total
integer
required

Total number of runs

limit
integer
required

Page size limit

offset
integer
required

Page offset