Skip to main content
GET
/
openapi
/
v1
/
tasks
/
detail
Get task detail
curl --request GET \
  --url https://api.vmeg.ai/openapi/v1/tasks/detail \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "message": "",
  "data": {
    "taskId": "<string>",
    "taskType": "vt",
    "status": "<string>",
    "result": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vmeg.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Send your API Key in the Authorization header (Bearer <api_key>). See Authentication.

Query Parameters

projId
string
required

Project ID (from API Key scope)

taskId
string
required

Open API task ID

Response

200 - application/json

Success

code
integer
required

Business code; 200 means success

Example:

200

message
string

Human-readable detail when code is not success

Example:

""

data
object