Agent API
Drive assessments, plans, and settlements from your own app.
Your API key
Send it as a Bearer token. Keep it secret.
vm_live_••••••••••••••••••••••••Endpoints
One route, four request types — POST /api/agent
- chatFree-form conversation with the verification agent.
→ { reply, source } - assessRate a commitment's success probability before staking.
→ { probability, reasons, proveMeWrong, reply } - planGenerate a verification checklist of evidence criteria.
→ { criteria: [{ id, label, source }] } - verifySettle a verdict from gathered evidence.
→ { verdict, reasoning, evidence }
Example request
Assess a commitment before staking.
request
curl -X POST https://vewme.app/api/agent \
-H "Content-Type: application/json" \
-d '{
"type": "assess",
"message": "I will ship my MVP in 7 days",
"commitment": { "stake": 50, "multiplier": 2 }
}'