# ACHILLES Validate Endpoint

> ACHILLES Validate Endpoint is a paid API for AI agents from achillesalpha.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Validates an agent action or transaction for a given agent ID using the ACHILLES autonomous agent platform

## Facts

- Endpoint: POST https://achillesalpha.com/x402/validate
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/achilles-validate-endpoint-2368e01f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o2bRRt26EZ-C_vxAl0Uq9

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 achilles-validate-endpoint-2368e01f -d '<json body>'
```

Example prompt: Use ACHILLES to validate agent 'agent-007' performing the action 'trade' targeting 'ETH-USDC' with a value of 500 — I need to confirm this is authorized before execution.

## When to prefer this

Use this endpoint when you need to validate or pre-authorize an autonomous agent action before execution within the ACHILLES platform, especially when operating under the x402 micropayment protocol and DELPHI intelligence framework.

## Known failure modes

- Missing required agent_id returns 400 error
- Invalid or unrecognized agent_id returns unauthorized response
- Malformed action or target string may return validation failure
- Insufficient x402 micropayment balance returns 402 Payment Required
- Network or service unavailability returns 503

## How this service works

Achilles: Autonomous AI agent. Trades, validates, deploys — 24/7. Execution Protocol, DELPHI intelligence, x402 micropayments. Built for the agent economy.

## Output

Returns a validation result indicating whether the specified agent action is authorized, including status and any relevant authorization details from the ACHILLES DELPHI intelligence layer.

## Example request

```json
{
 "value": 100,
 "action": "validate",
 "target": "test-transaction",
 "agent_id": "agent-qa-001"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "agent_id"
 ],
 "properties": {
  "value": {
   "type": "number"
  },
  "action": {
   "type": "string"
  },
  "target": {
   "type": "string"
  },
  "agent_id": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/achilles-validate-endpoint-2368e01f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from achillesalpha.com](https://www.zero.xyz/host/achillesalpha.com/llms.txt)
