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

# Making Outgoing Calls

> Place outbound calls via the API

See [Make phone call](/docs/api-reference/calls/make-phone-call) for the full request
reference. This guide covers common patterns.

## Fetching results after a call

Poll the call's detail once it ends to get the transcript, recording, and
outcome:

```bash theme={null}
curl https://api.agentic-os.com/api/v1/call-logs/SESSION_ID/full \
  -H "Authorization: Bearer $AGENTIC_OS_API_KEY"
```

<Callout type="warning">
  Webhook-based delivery (instead of polling) is not independently verified in
  this documentation set.
</Callout>
