What is in this section
- Python: HTTPX and
requestsexamples for triggering calls and handling webhooks. - TypeScript: Node-friendly
fetchexamples for server-side use. - React and React Native: client-side patterns for browser and mobile.
Current OpenAPI coverage
The published OpenAPI document currently includes one operation:POST /v1/calls: see Trigger a Call.
Pattern: thin HTTP wrappers
Until first-party SDKs ship, the recommended pattern is a thin per-service wrapper in your own codebase that:- Centralizes the base URL, default headers, and authentication.
- Maps each endpoint to a typed function in your language of choice.
- Surfaces DialNexa error responses (see Errors) without hiding them.
This section is intentionally aligned with
/api-reference/openapi.json so the examples stay consistent with Mintlify’s API reference playground.Related pages
- API Introduction: base URLs, authentication, request and response shape.
- Trigger a Call: the first operation covered in the OpenAPI spec.
- Errors: error format and codes returned by every endpoint.
- Authentication: how API keys are sent and verified.