Skip to main content
GET
/
api
/
extractor
/
v1
/
extract-status
/
{task_id}
curl -X GET https://api.appliedai.club/api/extractor/v1/extract-status/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: YOUR_API_KEY"
{
  "task_id": "<string>",
  "status": "processing",
  "total_files": 1,
  "processed_files": 0,
  "failed_files": 0,
  "created_at": "<string>",
  "updated_at": "<string>",
  "results": {},
  "errors": "<string>"
}
This API requires authentication. See our Authentication Guide for details.

Path Parameters

task_id
string
required
UUID of the extraction task

Status Values

  • PROCESSING: Task is currently being processed
  • COMPLETED: Task has completed successfully
  • FAILED: Task has failed
When status is COMPLETED, the response will include the extraction results. When status is FAILED, the response will include error information.
curl -X GET https://api.appliedai.club/api/extractor/v1/extract-status/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: YOUR_API_KEY"

Path Parameters

task_id
string
required

UUID of the extraction task

Response

Successful Response

Response model for extraction status check

task_id
string
required
status
enum<string>
required
Available options:
processing,
retrying,
completed,
failed
created_at
string
required
updated_at
string
required
total_files
integer
default:1
processed_files
integer
default:0
failed_files
integer
default:0
results
object | null
errors
string | null
I