# Get Call By ID

## Get Call

> Retrieve details of a single call.

```json
{"openapi":"3.0.3","info":{"title":"TeloAI API","version":"1.0.0"},"servers":[{"url":"https://api.teloai.app"}],"paths":{"/api/calls/{callId}":{"get":{"tags":["Calls"],"summary":"Get Call","description":"Retrieve details of a single call.","parameters":[{"in":"path","name":"callId","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Call details","content":{"application/json":{"schema":{"$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"}}}}}}
```
