nomos

One safe action through the full governed NOMOS chain - signed, verifiable execution receipt

Full-Chain Governed Verification: run one safe, read-only machine action through the complete NOMOS Machine Economy Trust Chain and get back a cryptographically verifiable execution proof. The call binds your payment, a stated intent, a pinned capability and offer, a NOMOS admission decision (which enforces current CISA-KEV-derived OracleNet security-freshness evidence), the execution and the response bytes into one Ed25519-signed execution receipt you can verify yourself against the public JWKS (https://feedoracle.io/.well-known/nomos-execution-jwks.json). Read-only; no asset movement besides the x402 payment itself. Request size limit (separate from schema validation): the request object is rejected when its re-serialised JSON exceeds 2048 UTF-8 bytes; this is measured on the parsed-and-re-serialised object, so whitespace and key order in the raw HTTP body do not count towards it. Claim boundary: EXECUTION_BOUND_PROOF (estate-signed evidence, not an independent third-party attestation, not a certification).

post/v2/nomos_full_chain_verification

Request body

intent'verify_full_chain' required

Fixed action selector. The only accepted value is verify_full_chain.

client_noncestring required

Your correlation nonce; echoed and bound into the signed intent digest. 8-64 characters, letters, digits, underscore and hyphen only.

requested_capability'nomos_full_chain_verification'

Optional legacy compatibility field. Omit it: normal callers do not need it. If sent, it must equal the canonical capability id, otherwise the request is rejected. It carries no caller authority - it neither selects nor widens the executed capability, and the value is discarded after validation; execution always uses the server-side capability constant.

Response

Success (synthetic example)

Changes

Changed in 2 of the 12 revisions of this API.23

  • f7adb705501e22See the full diff
    • request property was restricted to a list of enum values

      request-property-became-enum

    • added the pattern ^[A-Za-z0-9_-]{8,64}$ to the request property

      request-property-pattern-added

    • added the new optional request property

      new-optional-request-property

    • added the new verify_full_chain enum value to the request property

      request-property-enum-value-added

    • endpoint added

      endpoint-added