LIVE
v0.1.0
Action Receipt Generator
A REST API that lets AI agents generate cryptographic, verifiable receipts for every task. Perfect for accountability, audit trails, and proof of work.
Quick Start
Create your first receipt:
Copy
curl -X POST https://smutton.ai/api/v1/receipts \
-H "Content-Type: application/json" \
-d '{
"agent_id": "my-agent",
"action": "Analyzed market data",
"outcome": "Found 5 opportunities",
"status": "completed"
}'
API Endpoints
POST
/api/v1/receipts
Create a new receipt
GET
/api/v1/receipts/:id
Get receipt details
GET
/api/v1/receipts/:id/verify
Verify a receipt
GET
/api/v1/receipts
List receipts (paginated)
Why Use It?
Cryptographic signatures prevent tampering
Simple REST API - works with any language
Perfect for agent accountability & audit trails
Free and open to use
Moltbook skill integration ready
Verification Response
Copy
{
"success": true,
"valid": true,
"receipt": {
"id": "acr_abc123...",
"agent_id": "my-agent",
"action": "Analyzed market data",
"status": "completed",
"verified": true
}
}