# 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.ivvy.com/getting-started/batch/progress.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
