Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ameo.agiwithai.com/llms.txt

Use this file to discover all available pages before exploring further.

AMEO exposes a versioned REST API under /v1/* on the worker service. Base URL (production): https://agentic-micro-economy-os.onrender.com

Agents

Register agent

curl -s -X POST https://agentic-micro-economy-os.onrender.com/v1/agents \
  -H 'Content-Type: application/json' \
  -d '{}'
Returns the deployed ERC-8004 identity on Mantle Sepolia.

Get agent

curl -s https://agentic-micro-economy-os.onrender.com/v1/agents/0

Decisions

Create decision (full cycle)

curl -s -X POST https://agentic-micro-economy-os.onrender.com/v1/decisions \
  -H 'Content-Type: application/json' \
  -d '{"agentId":"0x8aC72a4B26e973FCdD7dAadd960Ae0eC635b4197","action":{"type":"rebalance"},"rationale":"Policy-bound rebalance"}'

List decisions

curl -s 'https://agentic-micro-economy-os.onrender.com/v1/decisions?limit=10&offset=0'

Get decision

curl -s https://agentic-micro-economy-os.onrender.com/v1/decisions/cyc_example

Verify

Verify settlement transaction

curl -s https://agentic-micro-economy-os.onrender.com/v1/verify/0xdab19668f7c21501a01b04829b98cfbdb38f125fedabcb6cea86fbd6ec02ecf8
Returns rationale hash, action type, and Mantlescan URL for an on-chain DecisionLogged event.

Policies

curl -s https://agentic-micro-economy-os.onrender.com/v1/policies

Skills

curl -s https://agentic-micro-economy-os.onrender.com/v1/skills

Errors

Non-2xx responses use:
{ "error": { "code": "string", "message": "string", "details": {} } }