Authorizations
API key for authentication. Make sure to include the word apikey
, followed by a single space and then your token.
Example: apikey 1234$abcdef
Query Parameters
The task unique identifier to fiund
Type of the AI task. Reflects the original API method that was used to create the AI task.
transcription
, content-moderation
Task status
FAILURE
, PENDING
, RECEIVED
, RETRY
, REVOKED
, STARTED
, SUCCESS
Time when task was created. Datetime in ISO 8601 format.
Which field to use when ordering the results: task_id
, status, and task_name
.
Sorting is done in ascending (ASC) order.
If parameter is omitted then "started_at
DESC" is used for ordering by default.
task_id
, status
, task_name
, started_at
This is an field for combined text search in the following fields: task_id
, task_name
, status, and task_data
.
Both full and partial searches are possible inside specified above fields. For example, you can filter tasks of a certain category, or tasks by a specific original file.
Example:
- To filter tasks of Content Moderation NSFW method:
GET /streaming/ai/tasks?search=nsfw
- To filter tasks of processing video from a specific origin:
GET /streaming/ai/tasks?search=s3.eu-west-1.amazonaws.com
Page to view from task list, starting from 1
Number of results to return per page.