# ACHILLES DELPHI Graph Query

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

Queries the DELPHI knowledge graph using subject-predicate-object triple patterns to retrieve intelligence data for autonomous agent decision-making

## Facts

- Endpoint: POST https://achillesalpha.com/x402/delphi/graph/query
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/achilles-delphi-graph-query-a2be859b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZzkTmM08WV265Pmkjugvr

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-delphi-graph-query-a2be859b -d '<json body>'
```

Example prompt: Query the DELPHI intelligence graph to find what relationship exists between subject 'ETH' and object 'USD' via the predicate 'priceFeed' — I need the current graph data for that triple.

## When to prefer this

Use this endpoint when an AI agent needs to query structured relational intelligence from the DELPHI knowledge graph using semantic triple patterns (subject-predicate-object). Prefer this over generic REST lookups when the data model is graph-based and relationships between entities are the primary query target within the ACHILLES autonomous agent ecosystem.

## Known failure modes

- Missing or invalid triple fields (subject, predicate, object) return 400 bad request
- Payment failure via x402 micropayment protocol returns 402 Payment Required
- Unrecognized graph nodes return empty result set or 404
- Service unavailability returns 503
- Malformed JSON body returns parsing error

## 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 graph query results matching the subject-predicate-object triple pattern from the DELPHI knowledge graph, including matched nodes, edges, and associated intelligence data relevant to the queried relationship.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "object": {
   "type": "string"
  },
  "subject": {
   "type": "string"
  },
  "predicate": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/achilles-delphi-graph-query-a2be859b/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)
