curl --request GET \
--url https://api.anchorbrowser.io/v1/task \
--header 'anchor-api-key: <api-key>'{
"data": {
"tasks": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"latestVersion": "<string>",
"code": "<string>",
"language": "typescript",
"deleted": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"browserConfiguration": {
"initial_url": "<string>",
"tags": [
"production",
"scraping",
"customer-123"
],
"recording": {
"active": true
},
"proxy": {
"active": true,
"type": "anchor_proxy",
"country_code": "us",
"region": "<string>",
"city": "<string>"
},
"timeout": {
"max_duration": 123,
"idle_timeout": 123
},
"live_view": {
"read_only": true
}
}
}
],
"total": 1,
"page": 2,
"limit": 50
}
}Retrieves a paginated list of all tasks for the authenticated team. Tasks are returned with their latest version information and metadata.
If you are using the new Task Builder, see the Tasks V2 endpoints in this API reference.
curl --request GET \
--url https://api.anchorbrowser.io/v1/task \
--header 'anchor-api-key: <api-key>'{
"data": {
"tasks": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"teamId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"latestVersion": "<string>",
"code": "<string>",
"language": "typescript",
"deleted": true,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"description": "<string>",
"browserConfiguration": {
"initial_url": "<string>",
"tags": [
"production",
"scraping",
"customer-123"
],
"recording": {
"active": true
},
"proxy": {
"active": true,
"type": "anchor_proxy",
"country_code": "us",
"region": "<string>",
"city": "<string>"
},
"timeout": {
"max_duration": 123,
"idle_timeout": 123
},
"live_view": {
"read_only": true
}
}
}
],
"total": 1,
"page": 2,
"limit": 50
}
}Was this page helpful?