Getting Started

Get started with the Om API in minutes.

2-Step Setup

1

Get your API key

Open your dashboard and create an API key.

# Keep secrets out of git
export OMTX_API_KEY="sk_..."
2

Make your first request

Verify the key works by listing the current dataset catalog.

curl https://api.omtx.ai/v2/datasets/catalog \
  -H "x-api-key: YOUR_API_KEY"

Use `/v2/health` for a public smoke check, and add idempotency keys on POST requests (see Idempotency) to safely retry without duplicate launches.