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

# Node SDK — calls

> Node SDK reference for placing outbound voice calls programmatically with caller-ID checks and cap planning.

`CallsResource` is reachable on every Kataven Node client as `client.calls`. Each method maps to one HTTP endpoint on the [Hub API](/api-reference/introduction); links to the underlying spec entry are inline below.

Place outbound voice calls. The server enforces caller-ID ownership and per-tenant cost caps before dispatching to the carrier.

## Methods at a glance

| Method      | HTTP                           | Summary                    |
| ----------- | ------------------------------ | -------------------------- |
| `originate` | `POST /api/v1/calls/originate` | Originate an outbound call |

## Reference

### `client.calls.originate(...)`

Originate an outbound call

**HTTP** — `POST /api/v1/calls/originate` · [API reference →](/api-reference/introduction#tag/Calls/operation/postApiV1CallsOriginate)

```typescript theme={null}
originate(input: { from_number: string; to_number: string; agent_id: string })
```

Places an outbound call from one of your registered phone numbers to an arbitrary E.164 destination using a configured agent. Subject to per-tenant cost caps (see /api/v1/call-limits).
