Skip to main content

Service API Reference

Individual backend services expose their own APIs, all accessible through the nginx reverse proxy.

7-Step Wizard API

Route: /services/wizard/ Technology: Python/FastAPI Docs: /services/wizard/docs (Swagger UI)

POST /services/wizard/process

Run a full 7-step computation.

curl -X POST http://your-domain/services/wizard/process \
-H "Content-Type: application/json" \
-d '{"query": "quantum tunneling probability", "domain": "quantum"}'

GET /services/wizard/operators

List operators for a specific domain.

GET /services/wizard/domains

List all available physics domains.

GET /services/wizard/experiments

View past computation experiments.


HF Forensic Intelligence Suite

Route: /services/forensic/ Technology: Python/Flask

20 forensic scoring functions for content verification and anomaly detection.

POST /services/forensic/analyze

Run forensic analysis on content.

curl -X POST http://your-domain/services/forensic/analyze \
-H "Content-Type: application/json" \
-d '{"content": "text to analyze", "functions": ["entropy", "pattern", "anomaly"]}'

Available Functions

  • Entropy analysis (Shannon, Renyi, conditional)
  • Pattern detection (repetition, structure, frequency)
  • Anomaly scoring (deviation, outlier, distribution)
  • AI detection (statistical fingerprinting)
  • Metadata analysis (timestamp, source, chain of custody)

Zeqond Daemon

Route: /services/daemon/ Technology: Python

The temporal synchronization service — the heartbeat of Zeq OS.

GET /services/daemon/health

{
"status": "ok",
"frequency": 1.287,
"zeqond": 3296847201,
"uptime": 86400
}

GET /services/daemon/tick

Current Zeqond tick information.

{
"zeqond": 3296847201,
"unix": 1740499200.123,
"phase": 0.4521,
"ko42_automatic": 0.000891,
"ko42_manual": null
}

GET /services/daemon/convert?unix=:timestamp

Convert a Unix timestamp to Zeqond time.

GET /services/daemon/convert?zeqond=:count

Convert a Zeqond count to Unix timestamp.


ChromaDB (Deprecated)

Route: /services/chromadb/ Technology: Python

Vector database for semantic search. Used by DocsGPT and available for custom embedding workloads.

GET /services/chromadb/api/v1/heartbeat

{ "nanosecond heartbeat": 1740499200123456789 }

GET /services/chromadb/api/v1/collections

List all collections.

POST /services/chromadb/api/v1/collections/:name/query

Query a collection with embedding vectors.


Route: /search/ Technology: Python

Privacy-respecting metasearch aggregating 70+ search engines.

GET /search/?q=:query

Web search UI — returns HTML results page.

GET /search/?q=:query&format=json

Programmatic access — returns JSON results.

curl "http://your-domain/search/?q=quantum+mechanics&format=json"

Code Sandbox

Route: /services/sandbox/ Technology: Node.js

Sandboxed code execution for MCP (Model Context Protocol) integration with Zeq MI.

POST /services/sandbox/execute

Execute code in a sandboxed environment.

{
"language": "python",
"code": "from zeq_os import HulyaSync\nprint(HulyaSync().daemon_tick())"
}