Skip to main content
GET
/
v1
/
tasks
/
{task_id}
Get Task Status
curl --request GET \
  --url https://devapi.fineshare.net/v1/tasks/{task_id} \
  --header 'Authorization: <authorization>'
{
  "task_id": "<string>",
  "status": "pending",
  "url": "<string>",
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://api.finevoice.ai/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string
required

Bearer token for authentication. Format: Bearer {your_api_key}

Path Parameters

task_id
string
required

The task ID returned by any async audio processing endpoint.

Response

Task status and result.

task_id
string
status
enum<string>

Current status of the task.

Available options:
pending,
processing,
completed,
failed
url
string | null

Download URL of the generated audio file. Available when status is completed.

error
string | null

Error message if the task failed.