Omnix

SDKs & Tools

This page hosts the developer tools, SDK clients, and testing suites available to accelerate your integration with the Omnix Gateway API.


Postman Collection

Download our official Postman collection to test the OmnixGatewayRpc API directly from your desktop.

Make sure to set your baseUrl and apiKey variables before sending your first request.


Official SDK Clients (Upcoming)

We are actively building client SDKs for popular programming languages.

Language Status Repository
Node.js / TypeScript 🟡 In Development (Alpha) github.com/omnix-org/omnix-node
Python 🔴 Planned (Q3 2026) github.com/omnix-org/omnix-python
Go 🔴 Planned (Q4 2026) github.com/omnix-org/omnix-go

Node.js Example (Preview)

import { OmnixClient } from '@omnix/sdk';

const client = new OmnixClient({
  apiKey: process.env.OMNIX_API_KEY,
  baseUrl: 'https://api.your-omnix-instance.com/api/rpc'
});

const contact = await client.contacts.findOrCreate({
  identifiers: { phone: '+15551234567' },
  profile: { firstName: 'Alice' }
});

console.log(`Matched contact: ${contact.contactId}`);

Community Utilities

Have you built a wrapper, SDK, or plugin for Omnix? Let our team know to get it listed here!