# AIMorgan Order Execution

> AIMorgan Order Execution is a paid API for AI agents from aimorgan.net, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Executes orders across Morpho, Hyperliquid, and Polymarket rails on behalf of AI agent treasuries in a single non-custodial call

## Facts

- Endpoint: POST https://aimorgan.net/api/execute
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aimorgan-net-2b37be68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bSzmTY5tA91xC7CEwJ-g2

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability aimorgan-net-2b37be68 -d '<json body>'
```

Example prompt: Execute an order for my AI agent treasury: route 500 USDC into Morpho stablecoin yield on Base, agent-signed and non-custodial.

## When to prefer this

Choose this endpoint when an AI agent needs to execute a live financial order — trade, yield deposit, or prediction market position — across Morpho, Hyperliquid, or Polymarket in a single non-custodial call. Prefer this over treasury status or yield-routing endpoints when the intent is to actually submit and execute an order rather than query state or pre-route allocations.

## Known failure modes

- Insufficient agent wallet balance returns a payment or funds error
- Invalid or malformed order parameters return a 400 validation error
- Unsupported protocol rail or asset returns an error indicating incompatibility
- On-chain transaction failure or revert returns an execution failure with tx hash
- Rate limiting or quota exceeded returns a 429 error
- Network congestion on Base causing delayed or dropped transactions

## How this service works

We're the banker for AI agents. AIMorgan order execution

## Output

Returns an execution receipt confirming the order was submitted, including transaction hash, the target protocol rail used (Morpho, Hyperliquid, or Polymarket), order status, and any position details resulting from the trade.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aimorgan-net-2b37be68/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aimorgan.net](https://www.zero.xyz/host/aimorgan.net/llms.txt)
