GET
/
v1
/
jobs
/
{jobId}
curl --request GET \
  --url https://api.pyannote.ai/v1/jobs/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "jobId": "1234567890",
  "status": "pending",
  "createdAt": "2024-02-20T12:00:00Z",
  "updatedAt": "2024-02-20T12:00:00Z",
  "output": {
    "voiceprint": "aGVsbG8gd29ybGQ",
    "warning": "<string>"
  }
}

This endpoint allows you to retrieve the details of a job that you have created, including the results if the job is completed.

The output field contains the job results and is only available when the job status is succeeded. Job results are automatically deleted after 24 hours of job completion.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

jobId
string
required

Job ID to track the progress

Response

200
application/json
jobId
string

Job ID to track the progress or get the results

Example:

"1234567890"

status
enum<string>

Status of the job

Available options:
pending,
created,
succeeded,
canceled,
failed,
running
createdAt
string

Date and time the job was created

Example:

"2024-02-20T12:00:00Z"

updatedAt
string

Date and time the job was last updated

Example:

"2024-02-20T12:00:00Z"

output
object

Output of a voiceprint job, available for 24 hours after job completion