Skip to main content
GET
/
api
/
enterprise
/
request
/
status
Request Status
curl --request GET \
  --url https://api.wokelo.ai/api/enterprise/request/status/ \
  --header 'Authorization: Bearer <token>'
{
    "request_id": "b1f10ebf-a251-4e2d-b867-8482ac701987",
    "status": "COMPLETED",
    "request_type": "target_screening",
    "created_at": "2026-03-25T07:24:40.333168Z",
    "updated_at": "2026-03-25T07:30:41.503082Z"
}

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

Authorization
string
required
JWT token obtained from the Authentication request

URL Parameters

request_id
string
required
The unique identifier of the request whose status is being checked. Example: 11db67b6-8345-4837-950f-87bbd8d7dcbe

Response

Successful response will include the request_id, status, request_type, created_at and updated_at fields. Sample Response
{
    "request_id": "11db67b6-8345-4837-950f-87bbd8d7dcbe",
    "status": "COMPLETED",
    "request_type": "market_map",
    "created_at": "2026-03-24T18:12:17.787415Z",
    "updated_at": "2026-03-24T18:29:31.041441Z"
}
Possible Status values
StatusDescription
PENDINGThe request has been received and is queued for processing.
PROCESSINGThe request is currently being processed.
COMPLETEDThe request has finished successfully. Result data is included in the response.
FAILEDThe request encountered an error during processing.
{
    "request_id": "b1f10ebf-a251-4e2d-b867-8482ac701987",
    "status": "COMPLETED",
    "request_type": "target_screening",
    "created_at": "2026-03-25T07:24:40.333168Z",
    "updated_at": "2026-03-25T07:30:41.503082Z"
}

Authorizations

Authorization
string
header
required

JWT token obtained from the /auth/token/ endpoint.

Query Parameters

request_id
string<uuid>
required

Response

200 - application/json

Status returned

request_id
string<uuid>
Example:

"b1f10ebf-a251-4e2d-b867-8482ac701987"

status
enum<string>
Available options:
PENDING,
PROCESSING,
COMPLETED,
FAILED
request_type
string
Example:

"target_screening"

created_at
string<date-time>
updated_at
string<date-time>