curl --request GET \
--url https://api.anchorbrowser.io/v1/task/{taskId} \
--header 'anchor-api-key: <api-key>'{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"latest": "<string>",
"deleted": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>"
}
}Retrieves task metadata without the code content. Useful for getting task information without downloading the full task code.
curl --request GET \
--url https://api.anchorbrowser.io/v1/task/{taskId} \
--header 'anchor-api-key: <api-key>'{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"latest": "<string>",
"deleted": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>"
}
}API key passed in the header
The ID of the task to retrieve
Task metadata retrieved successfully
Show child attributes
Unique identifier for the task
Task name
1 - 255Team identifier that owns this task
Latest version identifier
Whether the task is soft deleted
Task creation timestamp
Task last update timestamp
Optional description of the task
1000Was this page helpful?