Skip to content

Get file processing status

GET
/api/public/file-processor/status/{id}
curl --request GET \
--url https://backend.podscribe.ai/api/public/file-processor/status/example
  1. Retrieve the endpoint that uses the task system.
  2. Extract the id field from the response.
  3. Fetch this endpoint using the id field while the status is pending.
  4. Once the data processing is complete, this endpoint will return a status of ‘done’ along with the url field.
  5. Retrieve the link to access the data file.
id
required
string

Task ID from endpoint that returns task

OK

Media typeapplication/json
object
id
string
status
string
url
string
Examplegenerated
{
"id": "example",
"status": "example",
"url": "example"
}

Task not found.

Unexpected error.

Media typeapplication/json
object
message

Nodejs Error

object
Examplegenerated
{
"message": {}
}