# Delx Dict Values

> Delx Dict Values is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Extracts and lists all values from a JSON object, returning them as an array with a count

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/dict-values
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-dict-values-7ef30dfe
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8eRTuC71OEw0GtKdg2hOV

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 delx-dict-values-7ef30dfe -d '<json body>'
```

Example prompt: Can you extract all the values from this JSON object for me? {"name": "Alice", "age": 30, "city": "Boston"}

## When to prefer this

Choose this endpoint when you need a simple, cheap, stateless extraction of values from a flat or shallow JSON object and do not want to write or maintain parsing logic in your agent. Ideal for quick inspection of agent response payloads, config maps, or metadata dictionaries where only the value side of key-value pairs matters. Prefer it over custom code when operating in a sandboxed or low-trust agent environment that benefits from first-party, no-retention processing.

## Known failure modes

- Input is not a valid JSON object (e.g. an array or primitive) — likely returns an error or empty result
- Empty object input — returns empty values array with count of 0
- Deeply nested values may only return top-level values, not recursively extracted ones
- Malformed JSON in the request body causes a parse error

## How this service works

List object values. Call when you extract value bags from agent JSON. Returns values and count for $0.001 USDC via x402 on Base. No network, no keys, no retention; first-party local JSON only. Results are advisory; the caller owns budgets, auth, and production controls.

## Output

Returns an array of all values found in the input JSON object, along with a count of how many values were extracted. No keys are included — only the raw values. The response is local and stateless with no data retained.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "object": {
   "type": "object",
   "description": "Input field: object."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "schema": "delx/util-dict-values/v1",
  "values": [
   1,
   2
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-dict-values-7ef30dfe/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
