GET
/
v1
/
commands
Get list of commands sent
curl --request GET \
  --url https://api.rendi.dev/v1/commands \
  --header 'X-API-KEY: <api-key>'
[
  {
    "command_id": "123e4567-e89b-12d3-a456-426614174000",
    "created_at": "2024-01-01T00:00:00Z",
    "status": "SUCCESS"
  }
]

Authorizations

X-API-KEY
string
header
required

Query Parameters

limit
integer
default:1000

Maximum number of commands to return

Required range: 0 < x <= 1000
offset
integer
default:0

Number of commands to skip before starting to collect the result set

Required range: x >= 0

Response

200
application/json

Successful Response

The response is of type CommandsListItemResponse · object[].