> For the complete documentation index, see [llms.txt](https://doc.thordata.com/interface-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.thordata.com/interface-documentation/web-scraper-api/task-run-status-explanation.md).

# Task Run Status Explanation

### Basic Information

**Interface Description:** Retrieve the run status of a single or multiple tasks through the Thordata

**Interface URL:** [**https://openapi.thordata.com/api/web-scraper-api/tasks-status**](https://openapi.thordata.com/api/web-scraper-api/tasks-status)

**Request Method:** <mark style="color:orange;">POST</mark>

**Request parameters**

**Header：**

<table><thead><tr><th width="137">Parameter name</th><th width="110">Type</th><th width="79">Required</th><th>Describe</th></tr></thead><tbody><tr><td><code>token</code></td><td>string</td><td>Yes</td><td>Please log in to the  <a href="https://dashboard.thordata.com/account-settings"><strong>Dashboard-MENU-My Account</strong></a> to view your token parameter value</td></tr></tbody></table>

**Body：**

<table><thead><tr><th width="135">Parameter name</th><th width="112">Type</th><th width="80">Required</th><th width="420.0703125">Describe</th></tr></thead><tbody><tr><td><code>tasks_ids</code></td><td>string</td><td>Yes</td><td>Task ID (separate multiple with commas) For example: 123ffed4917a41389f7e21c6b8be6a95,c59d9325e9fe4e149c6a59cbd6e3a954</td></tr></tbody></table>

### Response example

```sh
{
    "code": 200,
    "data": [
        {
            "task_id": "449ffed4917a41389f7e21c6b8be6a95",
            "status": "Ready"
        },
        {
            "task_id": "c59d9325e9fe4e149c6a59cbd6e3a5e4",
            "status": "Ready"
        }
    ],
    "msg": "ok"
}
```

{% hint style="info" %}
If the returned code value is not 200, please check the [**error code description list**](https://doc.thordata.com/interface-documentation/error-code/error-code-description) and modify it.
{% endhint %}

<table><thead><tr><th width="158"> Parameter name</th><th width="102"> Type</th><th width="100">Required</th><th width="388.36328125">Describe</th></tr></thead><tbody><tr><td><code>code</code></td><td>number</td><td>No</td><td></td></tr><tr><td><code>data</code></td><td>object</td><td>No</td><td>item Type: object</td></tr><tr><td>    <code>task_id</code></td><td>string</td><td>Yes</td><td></td></tr><tr><td>    <code>status</code></td><td>string</td><td>Yes</td><td>Running，Failed，Ready </td></tr><tr><td><code>msg</code></td><td>string</td><td>No</td><td></td></tr></tbody></table>
