Get started

Quickstart

Three steps to your first Elite API call.

  1. Step 01

    Create an API key

    Open the dashboard, create a key, and copy it once — Elite won't show the full key again.

    Dashboard → API
  2. Step 02

    Check your account

    Hit GET /v1/account with your key — or open any reference page and use Try it.

    curl https://api.ofmelite.io/v1/account \
    -H "Authorization: Bearer ofm_YOUR_API_KEY"
  3. Step 03

    Create a link

    Spin up a deeplink — response includes the live ofmelite.io/… URL.

    curl -X POST https://api.ofmelite.io/v1/links \
    -H "Authorization: Bearer ofm_YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"destination":"https://yourpage.com/you","slug":"you-ig","behavior":"conservative"}'