Request Status
Supporting APIs
Request Status
Retrieves the current status of a previously submitted async API request.
GET
Request Status
Documentation Index
Fetch the complete documentation index at: https://docs.wokelo.ai/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Retrieves the current status of a previously submitted API request.Endpoint Details
- Method: GET
- Endpoint:
/api/enterprise/request/status/
Authentication requirements
- Include a valid JWT token in your request header
- If you don’t have a token yet, you can get one from the
/auth/token/endpoint first.
Request
Request Parameters
Header Parameters
JWT token obtained from the Authentication request
URL Parameters
The unique identifier of the request whose status is being checked. Example:
11db67b6-8345-4837-950f-87bbd8d7dcbeResponse
Successful response will include therequest_id, status, request_type, created_at and updated_at fields.
Sample Response
| Status | Description |
|---|---|
PENDING | The request has been received and is queued for processing. |
PROCESSING | The request is currently being processed. |
COMPLETED | The request has finished successfully. Result data is included in the response. |
FAILED | The request encountered an error during processing. |
Authorizations
JWT token obtained from the /auth/token/ endpoint.