General Instructions
General purpose endpoints for task management and model information.
Query Task Status
GEThttps://tasks.xiguapi.tech/task-list
Retrieve a list of active tasks (queued, running, processing) for the authenticated user.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | Header | Yes | Bearer <YOUR_API_KEY> |
| Content-Type | Header | Yes | application/json |
Example
cURL
1curl -X GET https://tasks.xiguapi.tech/task-list \
2 -H "Authorization: Bearer <YOUR_API_KEY>"Query Supported Models
GEThttps://tasks.xiguapi.tech/model-list
Get a list of all supported model names for API usage.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| Authorization | Header | Yes | Bearer <YOUR_API_KEY> |
| Content-Type | Header | Yes | application/json |
Example
cURL
1curl -X GET https://tasks.xiguapi.tech/model-list \
2 -H "Authorization: Bearer <YOUR_API_KEY>"