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:
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 vectorPOST /v1/holodb/search— Search nearest neighborsDELETE /v1/holodb/delete— Remove a vector
Error codes
| Code | Meaning |
|---|---|
401 | Invalid or missing API key |
403 | Key does not have access to this product |
429 | Rate limit exceeded |
500 | Internal server error |
503 | Service temporarily unavailable |
Rate limits
Rate limits are enforced per API key.
| Tier | Requests/minute |
|---|---|
| Free | 30 |
| Starter | 300 |
| Pay-as-you-go | 1,000 |