NEXORADocs

Quickstart

Two steps: get a key, make a call.

1. Get an API key

  1. Sign in at https://console.onenexora.com and select or create an organisation — every key belongs to an organisation, not to you personally.
  2. Open API Keys in the sidebar, name the key, and create it.
  3. Copy the key immediately. It is shown in full exactly once and stored hashed — NEXORA cannot show it to you again.

2. Make your first call

List every public NEXORA product — this is the same Product Registry that drives the website’s /products page:

curl https://api.onenexora.com/v1/products \
  -H "Authorization: Bearer nx_live_your_key_here"

A successful response today looks like this — empty, because no product has graduated past concept/alpha yet (the same reason /products on the website is empty too):

{ "data": [] }

Once a product reaches beta, it shows up here with this shape:

{
  "data": [
    {
      "id": "prod_sentinel",
      "slug": "sentinel",
      "name": "AI Cloud Log Sentinel",
      "tagline": "AI-assisted log monitoring for cloud environments.",
      "category": "security",
      "platform_pillar": "security",
      "lifecycle": "beta",
      "url": "https://sentinel.onenexora.com"
    }
  ]
}

Either way, the call succeeded if you got a 200 back — that confirms your key and organisation are real. Every response — success or error — carries X-RateLimit-Limit, X-RateLimit-Remaining and X-RateLimit-Reset headers. See Limits for the numbers and API Reference for every endpoint.

No key yet, just exploring?

GET /v1/health needs no authentication:

curl https://api.onenexora.com/v1/health