Get Task Status
This API retrieves the status and details of a specific task using its unique task_id
.
API Endpoint
GET https://api.genaifactory.ai/v1/task/{task_id}
Headers
formalcloud-api-key
string
Yes
API key for authentication
Request Parameters
task_id
integer
Yes
The unique identifier of the task.
Example Request
Response
Returns a JSON object containing the status, input, output, and details of the requested task.
created_at
string
The timestamp when the task was created.
finished_at
string
The timestamp when the task was completed.
input_data
array
An array containing the input data for the task.
language_code
string
The language code detected for the input data.
output_data
array
An array containing the output data of the task, if available.
task_id
integer
The unique identifier for the task.
task_status
string
The current status of the task (CREATED
, RUNNING
, SUCCESS
, or FAILED
).
task_type
string
The type of task created.
Input Data (input_data
)
type
string
The type of the input (e.g., text
).
text
object
Contains the input text content.
Output Data (output_data
)
type
string
The type of the output (e.g., audio
).
url
string
The URL to access the generated output.
length
float
The duration of the output in seconds.
Example Response
Last updated