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

# Lister les agents

> Lister tous les agents d'un espace de travail

## Requête

```bash theme={null}
curl "https://app.orova.ai/api/agents?workspaceId=WORKSPACE_ID" \
  -H "x-api-key: YOUR_API_KEY"
```

## Paramètres de requête

| Paramètre     | Type   | Par défaut | Description                   |
| ------------- | ------ | ---------- | ----------------------------- |
| `workspaceId` | string | —          | Filtrer par espace de travail |
| `page`        | number | `1`        | Numéro de page                |
| `limit`       | number | `10`       | Éléments par page             |

## Réponse

```json theme={null}
{
  "data": [
    {
      "_id": "agent_id",
      "name": "Support Agent",
      "llm_provider": "openai",
      "llm_model": "gpt-4o-mini",
      "tts_provider": "elevenlabs",
      "stt_provider": "deepgram",
      "workspaceId": "WORKSPACE_ID",
      "createdAt": "2025-01-01T00:00:00.000Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 10
}
```
