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

# Get Call

> Get call details

Retrieve details of a specific call. Requires Gate T.

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.60db.ai/dialer/calls/call-uuid \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  const call = await client.dialer.calls.get('call-uuid');
  ```

  ```python Python theme={null}
  call = client.dialer.calls.get('call-uuid')
  ```
</RequestExample>
