Skip to main content
POST
/
cloudextraction
/
statuses
Get Task Status
curl --request POST \
  --url https://openapi.octoparse.com/cloudextraction/statuses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "taskIds": [
    "<string>"
  ]
}
'
{
  "data": [
    {
      "taskId": "<string>",
      "taskName": "<string>",
      "status": "<string>"
    }
  ],
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Use the access_token obtained from POST /token

Body

application/json
taskIds
string[]
required

Response

200 - application/json

Task statuses retrieved

data
object[]
requestId
string