Documentation

Build with O(1) APIs.

Everything you need to integrate PHANTOM, HoloDB, NeuroCore, and Catalyst-Q into your stack.

API Overview

All API calls are made over HTTPS to api.strategic-innovations.ai. The API accepts JSON request bodies and returns JSON responses.

# Base URL
api.strategic-innovations.ai

# Authentication header
Authorization: Bearer YOUR_API_KEY

# Content-Type
Content-Type: application/json

Authentication

All API requests require an API key passed as a Bearer token in the Authorization header. Keys are created and managed from your dashboard.

Keys are scoped to specific products. Use the key corresponding to the product you are calling.

Quickstart

Get your first AI detection in under a minute:

1
2
Generate an API key in your dashboard
3
Make your first call:
curl -X POST https://api.strategic-innovations.ai/v1/phantom/detect \
  -H "Authorization: Bearer $PHANTOM_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text": "Your text here..."}'

PHANTOM

PHANTOM detects AI-generated text with 99.3% zero-shot accuracy. No training data, no fine-tuning, no GPU.

Endpoint

POST /v1/phantom/detect

Request body

{
  "text": "string",        // required, 1-100,000 chars
  "model": "phantom-v3"   // optional, defaults to latest
}

Response

{
  "is_ai": true,          // boolean
  "confidence": 0.987,     // float 0.0-1.0
  "model": "phantom-v3",   // model version
  "latency_ms": 47         // server latency in ms
}

HoloDB

O(1) vector database. 22 microsecond average retrieval at any scale. Encrypted hypervectors — data is meaningless without your key.

Endpoints

  • POST /v1/holodb/insert — Add a vector
  • POST /v1/holodb/search — Search nearest neighbors
  • DELETE /v1/holodb/delete — Remove a vector

Error codes

CodeMeaning
401Invalid or missing API key
403Key does not have access to this product
429Rate limit exceeded
500Internal server error
503Service temporarily unavailable

Rate limits

Rate limits are enforced per API key.

TierRequests/minute
Free30
Starter300
Pay-as-you-go1,000