# Agent Dojo Robustness Scenarios List

> Agent Dojo Robustness Scenarios List is a paid API for AI agents from apiwitchcraft.duckdns.org, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns a list of available agent robustness test scenarios for use in the Agent Dojo / SPAR framework

## Facts

- Endpoint: GET https://apiwitchcraft.duckdns.org/agent-dojo/scenarios
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-dojo-robustness-scenarios-list-6c577250
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BDEUNY4k5EHMZ6GK8gBBR

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-dojo-robustness-scenarios-list-6c577250
```

Example prompt: What robustness scenarios are available in Agent Dojo for testing AI agents?

## When to prefer this

Use this endpoint when you need to discover what robustness or adversarial test scenarios are available before running a specific agent evaluation. Prefer this over hardcoding scenario names — it acts as a catalog endpoint for the Agent Dojo SPAR framework hosted on apiwitchcraft.duckdns.org.

## Known failure modes

- Payment required (402) if x402 micropayment header not provided
- Empty list if no scenarios are currently available
- Network timeout if the duckdns host is unreachable
- Malformed response if the upstream scenario registry is unavailable

## How this service works

AgentDojo benchmark scenarios on demand: run standardized LLM-agent security tasks — prompt injection, data exfiltration, utility-under-attack — against your agent and get graded results. x402 pay-per-call on Base USDC. Researchers and builders use it to compare defenses, reproduce AgentDojo suites, and certify agent safety without hosting the harness.

## Output

A list of agent robustness scenario objects, likely including scenario names, types, descriptions, and identifiers that can be used to run specific SPAR evaluations against an agent.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-dojo-robustness-scenarios-list-6c577250/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiwitchcraft.duckdns.org](https://www.zero.xyz/host/apiwitchcraft.duckdns.org/llms.txt)
