Base URL & Auth

REST API — Base URL & Auth

Endpoint root, authentication headers, and response envelope.

Base URL

bashnomiqon.com
https://api.nomiqon.com/v1

Authentication

bashnomiqon.com
curl https://api.nomiqon.com/v1/agents   -H "Authorization: Bearer sk_live_..."   -H "Content-Type: application/json"   -H "Nomiqon-Version: 2026-05-01"

Response envelope

jsonnomiqon.com
{
  "data": { ... },
  "meta": {
    "requestId": "req_01jx...",
    "timestamp": "2026-05-24T12:00:00.000Z",
    "version":   "2026-05-01"
  }
}

Pagination

bashnomiqon.com
# Cursor-based pagination
GET /v1/agents?limit=50&after=ag_cursor...

# Response meta
{
  "meta": {
    "total":      312,
    "hasMore":    true,
    "nextCursor": "ag_01jx_next..."
  }
}

Versioning

Pass Nomiqon-Version: YYYY-MM-DD to pin your integration to a specific API version. The current stable version is 2026-05-01. Breaking changes are announced 90 days in advance.

REST API — Base URL & Auth — Nomiqon Docs