> For the complete documentation index, see [llms.txt](https://developer.ivvy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.ivvy.com/getting-started/batch/progress.md).

# Progress

## Progress

<mark style="color:green;">`POST`</mark> `[PlatformAddress]/api/1.0/batch?action=progress`

#### Path Parameters

| Name  | Type   | Description                                         |
| ----- | ------ | --------------------------------------------------- |
| async | string | The asyncId for the batch job to check progress for |

{% tabs %}
{% tab title="200 " %}

```
{
  "progress":33
}
```

{% endtab %}
{% endtabs %}

## Example Request

Fetch the progress of a batch job

```javascript
{
  "async":"a7ec88af7d710bf51b188004bb532d77"
}
```

## Returns

| Property | Description                                                       |
| -------- | ----------------------------------------------------------------- |
| progress | The progress of the batch job, as a percentage of work completed. |

## Throws

| Code                 | Description          |
| -------------------- | -------------------- |
| Specific Code: 24105 | Could not find batch |

The progress action takes the asyncId as a parameter and returns back the progress of the batch job as a percentage.
