Provable AI Gateway
Verifiable AI Data
powered by Cryptowerk
An AI gateway plug-in for verifiable data. Send a prompt. Get response with a content authenticity receipt.
Every call is cryptographically sealed, stored, and independently verifiable.
What just happened
Realayer turned an API call into independently verifiable receipts.
Your prompt was sent to the AI provider and the response came back normally.
Realayer created a fingerprint of the request and the response.
Those fingerprints were cryptographically sealed.
The receipts and artifacts were logged as independently verifiable evidence.
Live Demo
Try it now.
Send a prompt through Realayer and watch it return a model response with a verifiable receipt.
For developers
Plug into your AI gateway.
This demo uses chat completions or image generation models. At the gateway, it hashes the request and the response before sending them to cryptowerk.com /register to generate the proof sidecar proof.
The proof sidecar is stored with the request and response data, and the receipt headers maybe returned to the client. You can use those headers to verify the receipt independently at any time in the future.
POST /api/gateway/xai/v1/chat/completionsPOST /api/gateway/xai/v1/images/generationsShow sample text cURL
curl -X POST https://your-domain/api/gateway/xai/v1/chat/completions \
-H 'content-type: application/json' \
-d '{
"model": "grok-3-mini",
"messages": [
{ "role": "user", "content": "3 bullets: why should every AI call produce an independently verifiable receipt?" }
]
}'Show sample image cURL
curl -X POST https://your-domain/api/gateway/xai/v1/images/generations \
-H 'content-type: application/json' \
-d '{
"model": "grok-imagine-image",
"prompt": "An editorial illustration of a provable AI gateway generating a sealed image receipt",
"response_format": "b64_json"
}'