9DIGI Innovative Labs Building Enterprise AI Software

OmniThread REST API Reference

Export summaries and query indexes programmatically using our HTTPS endpoints.

1. Authentication

Pass your workspace secret key as a Bearer token in the request headers.

Authorization: Bearer omni_live_secret_key_8241

2. Context Query

Execute natural language semantic searches over your indices.

# Send POST query request
$ curl -X POST https://api.omnithread.io/v1/query \
    -H "Authorization: Bearer omni_live_secret_key_8241" \
    -H "Content-Type: application/json" \
    -d '{
      "query": "Who is deployment lead?",
      "confidence_threshold": 0.85
    }'