OOMNISENS AI docs · v0.1
Develop with TCP/AP

Kernel API · POST /v1/validate

One endpoint. Submit an Artifact, an Agentic Protocol (or its hash), and a generation-metadata hash; receive the unified envelope.

Pricing and API keys live on omnisensai.com; see the Kernel.

example
$ curl -X POST https://api.omnisensai.com/v1/validate \
    -H "Authorization: Bearer $KEY" -d @- <<'JSON'
{
  "artifact": { "name": "issue_refund", "arguments": { "amount": 20 } },
  "agentic_protocol": { /* or its hash */ }
}
JSON

< 200 OK
{ "data": { "conformant": true, "label": "AUTO_APPROVE" } }