# Agent Wonderland Generic Agent Runner

> Agent Wonderland Generic Agent Runner is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Routes and executes any agent by slug, dispatching to a self-hosted handler, composite pipeline, or Apify actor depending on the agent's configuration.

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/run-agent-generic
- 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/agent-wonderland-generic-agent-runner-5da3692d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-WFHTxHFBQPN775cJwiIT

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 agent-wonderland-generic-agent-runner-5da3692d -d '<json body>'
```

Example prompt: Run the agent with slug 'earnings-summary' on Agent Wonderland and give me the results.

## When to prefer this

Choose this endpoint when you want to programmatically invoke any agent available on the Agent Wonderland marketplace by its slug, without needing to know the underlying infrastructure (self-hosted, composite, or Apify). It is ideal for pay-per-call agent automation where the specific agent is identified by its slug and you want a single unified entry point for diverse agent types.

## Known failure modes

- Invalid or unknown agent_slug returns a 404 or error response
- Payment not completed results in 402 Payment Required
- Agent backend (self-hosted/Apify) is unavailable causing timeout or 503
- Malformed request body missing required agent_slug field
- Agent execution fails internally returning a 500 error

## How this service works

Run Agent Generic: Generic agent endpoint. Routes to self-hosted handler, composite, or Apify.

## Output

Returns the output produced by the dispatched agent, which varies depending on the agent_slug provided — could be structured data, generated content, extracted information, or a task completion confirmation, routed from a self-hosted handler, composite pipeline, or Apify actor.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "path": {
   "type": "object",
   "required": [
    "agent_slug"
   ],
   "properties": {
    "agent_slug": {
     "type": "string",
     "title": "Agent Slug"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-wonderland-generic-agent-runner-5da3692d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwonderland.com](https://www.zero.xyz/host/api.agentwonderland.com/llms.txt)
