> For the complete documentation index, see [llms.txt](https://emotech.gitbook.io/sync.ai-api-documentation-animation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://emotech.gitbook.io/sync.ai-api-documentation-animation/reference/sync.ai-api-overview/get-status.md).

# Get Status

This method allows you to check the progress of your submitted request.&#x20;

## /status Method

## Get Status of a Request

<mark style="color:blue;">`GET`</mark> `https://lipsync-ai.api.emotechlab.com/lipsync/status`

This gets the status for one job, via a URL query parameter called ID.

#### Query Parameters

| Name                                    | Type   | Description                                                             |
| --------------------------------------- | ------ | ----------------------------------------------------------------------- |
| token<mark style="color:red;">\*</mark> | String | Your user token tied to your account is used to validate your identity. |
| jobId<mark style="color:red;">\*</mark> | String | Job UUID                                                                |

{% tabs %}
{% tab title="200: OK Job running successfully" %}
Example JSON

```
{
    "code":"200",
    "message":"rendering"
}

{
    "code":"200",
    "message":"finished"
}
```

{% endtab %}

{% tab title="404: Not Found jobId not found" %}
No job with the ID $jobId was found. If the job completed a long time ago it's status may have been removed

<br>
{% endtab %}

{% tab title="401: Unauthorized Token is missing" %}
Token is missing. User didn’t include token when sending request to API.&#x20;
{% endtab %}

{% tab title="401: Unauthorized Invalid Token" %}
Token is not valid. Users used a token we can’t recognise.
{% endtab %}

{% tab title="500: Internal Server Error Request Error" %}
$error message from API that caused the output generation to fail.&#x20;
{% endtab %}
{% endtabs %}
