Asynchronous - Speech to Text API
Get list of all inference jobs
POSThttps://longrun-api.visai.ai/v1/job
Header
X-API-Key string required
Your API key
Responses
- 200
application/json
Schema
Example (from schema)
object
jobs Array [
List of inference jobs
object
id string
ID of the inference job
status string
COMPLETED
| FAILED
| QUEUE
| PROCESS
Status of request
error string
null
| Timeout
| Bad Inference
Reason of error
webhook_url string
The webhook URL provided by the user in the request.
created_at string
The timestamp indicating when the job was created, in ISO 8601 format with timezone information (e.g. 2024-12-18 08:03:26.405352 +0000 +0000
).
]
{
"jobs": [
{
"id": "<job-id>",
"status": "PROCESS",
"error": null,
"webhook_url": "<https://your-webhook-url>",
"created_at": "2024-11-12 04:19:24.95042 +0000 UTC"
},
{
"id": "<job-id>",
"status": "COMPLETED",
"error": null,
"webhook_url": "<https://your-webhook-url>",
"created_at": "2024-11-12 04:19:24.95042 +0000 UTC"
},
{
"id": "<job-id>",
"status": "FAILED",
"error": "Timeout", // Bad Inference
"webhook_url": "<https://your-webhook-url>",
"created_at": "2024-11-12 04:19:24.95042 +0000 UTC"
}
]
}
Loading...