Hosted delegation log for AI agents.
No infrastructure required.
$ curl -X POST https://cloud.authproof.dev/receipts \ -H "Authorization: Bearer ap_your_api_key" \ -d '{"receiptHash":"0xabc…","receiptData":{…},"expiresAt":"2h"}' # Response { "id": "uuid", "receiptHash": "0xabc…", "storedAt": "2026-04-18T12:00:00Z" }
Start free. Scale when you need to.
Three steps from zero to a verified delegation receipt.
npm install authproof
import { AuthProofClient } from 'authproof' const client = new AuthProofClient({ logEndpoint: 'https://cloud.authproof.dev', apiKey: 'your_api_key', })
const receipt = await client.delegate({ scope: { allowedOperations: ['read', 'write'], resource: 'database' }, operatorInstructions: instructions, expiresIn: '2h', }) // Receipt stored in hosted log automatically const result = await client.verify(receipt.hash, { action }) // { decision: 'allow', riskScore: 0, reasons: [] }