GET
/
v1
/
commands
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

API key required for authentication. Must be provided in the X-API-KEY header.

Response

200
application/json
Successful Response
command_id
string
required

Unique identifier for the submitted command

Example:

"123e4567-e89b-12d3-a456-426614174000"

status
enum<string>
required

Current status of the FFmpeg command

Available options:
QUEUED,
PROCESSING,
FAILED,
SUCCESS
error_status
string | null

Status of any error that occurred during command execution

Example:

"UNREACHABLE_INPUT_FILE"

error_message
string | null

Error details if the command failed

Example:

"Input file url https://rendi.dev/example does not have a valid file name in its' end."

created_at
string

Time when the command was created, in UTC