Skip to main content

Prerequisites

Before you begin, you need:
  • An OmniX API key — create one from the dashboard. New accounts come with free trial credit.
  • An X account token (auth_token cookie) for the account you want to act as. See Authentication.

Get started

1

Grab your two credentials

Your API key (omnix_live_...) and an X auth_token. Keep both handy.
Optional: any call also accepts a proxy (http:// or https://) to route it through your own proxy — add &proxy=... to a GET URL or a "proxy" field to a POST body. See Authentication.
2

Make your first request (a read)

Fetch a user’s profile with a simple GET:
3

Read the response

Every response uses the same envelope:
  • statustrue on success, false on error.
  • data — the payload (documented per endpoint).
  • errornull on success, otherwise the message.
4

Post your first tweet (a write)

Now a POST that acts on your account:
Prefer clicking over copying? Open any endpoint in the API Reference, paste your API key and auth_token, and hit Send to run it live against your account.