> ## Documentation Index
> Fetch the complete documentation index at: https://www.macaly.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Status ophalen

> Vraag de status van een chatworkflow op

Vraagt de status van een chatworkflow op. Handig om te controleren of een chat klaar is met verwerken zonder een streamingverbinding te onderhouden.

## Verzoek

```
GET /api/chat/{chatId}/status
```

### Headers

| Header          | Vereist | Beschrijving        |
| --------------- | ------- | ------------------- |
| `Authorization` | Ja      | `Bearer macaly_...` |

### Padparameters

| Parameter | Type   | Beschrijving                                          |
| --------- | ------ | ----------------------------------------------------- |
| `chatId`  | string | De chat-ID die is geretourneerd door `POST /api/chat` |

### Voorbeeldverzoek

<CodeGroup>
  ```bash cURL theme={null}
  curl https://www.macaly.com/api/chat/abc123/status \
    -H "Authorization: Bearer macaly_abc123..."
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    `https://www.macaly.com/api/chat/${chatId}/status`,
    {
      headers: {
        'Authorization': 'Bearer macaly_abc123...',
      },
    }
  );

  const data = await response.json();
  console.log(data.status);
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      f'https://www.macaly.com/api/chat/{chat_id}/status',
      headers={
          'Authorization': 'Bearer macaly_abc123...',
      },
  )

  data = response.json()
  print(data['status'])
  ```
</CodeGroup>

## Respons

```json theme={null}
{
  "chatId": "abc123",
  "url": "https://www.macaly.com/chat/abc123",
  "status": "completed",
  "result": {
    "content": "Here's what I built for you..."
  }
}
```

### Responsvelden

| Veld             | Type   | Beschrijving                                      |
| ---------------- | ------ | ------------------------------------------------- |
| `chatId`         | string | De chat-ID                                        |
| `url`            | string | URL om de chat in de browser te bekijken          |
| `status`         | string | Huidige workflowstatus (zie hieronder)            |
| `result.content` | string | Laatste assistentbericht (alleen bij `completed`) |
| `error.message`  | string | Foutbeschrijving (alleen bij `failed`)            |

### Statuswaarden

| Status               | Beschrijving                          |
| -------------------- | ------------------------------------- |
| `running`            | Workflow wordt momenteel uitgevoerd   |
| `completed`          | Succesvol afgerond                    |
| `failed`             | Er is een fout opgetreden             |
| `cancelled`          | Workflow is handmatig geannuleerd     |
| `no_active_workflow` | Geen workflow gevonden voor deze chat |

## Statuscodes

| Status | Beschrijving                         |
| ------ | ------------------------------------ |
| 200    | Succes                               |
| 401    | Ongeldige of ontbrekende API-sleutel |
| 403    | Chat behoort niet tot uw team        |
| 404    | Chat niet gevonden                   |

## Pollingpatroon

```bash theme={null}
while true; do
  STATUS=$(curl -s https://www.macaly.com/api/chat/$CHAT_ID/status \
    -H "Authorization: Bearer macaly_...")

  echo "Status: $(echo $STATUS | jq -r .status)"

  if echo "$STATUS" | grep -q '"status":"completed"'; then
    echo "Done!"
    break
  fi

  sleep 2
done
```

## Volgende stappen

Zodra de status `completed` is, kunt u:

1. **De app implementeren** met [`POST /api/chat/{chatId}/deploy`](/docs/nl/api/deploy)
