# ACHILLES Latest Signals Feed

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

Fetches the latest intelligence signals from the ACHILLES DELPHI system, filterable by category (security, market, DeFi, AI ecosystem)

## Facts

- Endpoint: POST https://achillesalpha.com/x402/latest-signals
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/achilles-latest-signals-feed-bc1f7b90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4mcnXa1TExv9ci8lug7hG

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-latest-signals-feed-bc1f7b90 -d '<json body>'
```

Example prompt: Pull the latest 10 market signals from ACHILLES DELPHI — I want to see what's moving in the DeFi space right now.

## When to prefer this

Use this endpoint when you need real-time intelligence signals from the ACHILLES DELPHI system specifically — particularly for crypto market, DeFi, security, or AI ecosystem monitoring. Prefer this over generic news or market data feeds when you want autonomous-agent-curated signals with severity ratings.

## Known failure modes

- Invalid category enum value returns validation error
- limit parameter exceeding system maximum may return truncated or error response
- Payment failure via x402 micropayment results in 402 Payment Required response
- Service unavailability returns 5xx error with no signals
- Empty result set if no signals match the requested category

## 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 JSON object containing a count of signals, an array of signal objects (each with id, timestamp, title, category, and severity), and a last_updated timestamp. Default returns up to 20 signals; can be filtered by category (security, market, defi, or ai_ecosystem).

## Example request

```json
{
 "limit": 10,
 "category": "defi"
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "number"
      },
      "category": {
       "enum": [
        "security",
        "market",
        "defi",
        "ai_ecosystem"
       ],
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "signals": [
   {
    "id": "sig_1",
    "ts": "2026-05-01T00:00:00Z",
    "title": "Example signal",
    "category": "market",
    "severity": "medium"
   }
  ],
  "last_updated": "2026-05-01T00:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/achilles-latest-signals-feed-bc1f7b90/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)
