# Resolve Status

### HEAD /avatars/{AVATAR\_ID}/renderings/{RENDERING\_ID}

This allows to query the status of a rendering. Please use a reasonable interval of 1+ seconds when querying this endpoint. See [Schema > Status](https://docs.loomai.com/schema/status#x-loom-status) for a list of status values.

#### Request

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

```bash
curl -X HEAD "https://api.loomai.com/v0.5/avatars/{AVATAR_ID}/renderings/{RENDERING_ID}"
```

{% endtab %}

{% tab title="Example" %}

```bash
curl -X HEAD "https://api.loomai.com/v0.5/avatars/5723980430835712/renderings/5723980430835712"
```

{% endtab %}
{% endtabs %}

#### Response

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

```http
HTTP/1.1 204 No Content
X-Loom-Status: [STATUS]
```

{% endtab %}

{% tab title="Example" %}

```http
HTTP/1.1 204 No Content
X-Loom-Status: inprogress
```

{% endtab %}
{% endtabs %}
