# List Calls

## List Calls

> Retrieve a paginated list of all calls.

```json
{"openapi":"3.0.3","info":{"title":"TeloAI API","version":"1.0.0"},"servers":[{"url":"https://api.teloai.app"}],"paths":{"/api/calls":{"get":{"tags":["Calls"],"summary":"List Calls","description":"Retrieve a paginated list of all calls.","parameters":[{"in":"query","name":"page","schema":{"type":"integer","default":1}},{"in":"query","name":"pageSize","schema":{"type":"integer","default":20}}],"responses":{"200":{"description":"A list of calls","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Call"}}}}}}}}},"components":{"schemas":{"Call":{"type":"object","properties":{"callId":{"type":"string","description":"Unique call identifier"},"assistantId":{"type":"string","description":"Which assistant handled the call"},"phoneNumberId":{"type":"string","description":"Outbound phone number used"},"customer":{"type":"object","properties":{"number":{"type":"string","description":"E.164 formatted customer number"}}},"status":{"type":"string","description":"Current call status (e.g. queued, in-progress, completed)"},"createdAt":{"type":"string","format":"date-time","description":"When the call was created"}}}}}}
```
