# Delx Extract Numbers

> Delx Extract Numbers 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-13).

Extracts all numbers from free-form text and returns them as an ordered list, without regex maintenance or LLM overhead.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/extract-numbers
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-extract-numbers-6965be49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JQ6Bo9NXJYP9-7bxL2p7j

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-extract-numbers-6965be49 -d '<json body>'
```

Example prompt: Pull all the numbers out of this scraped product listing text for me: 'Item #4821 costs $29.99, weighs 3.5 lbs, has 142 reviews and a score of 4.7 out of 5.'

## When to prefer this

Choose this endpoint when your agent needs to reliably pull numeric values (prices, IDs, quantities, scores) from messy or unstructured text without maintaining custom regex patterns or invoking an LLM. It is deterministic, requires no API key or subscription, costs $0.001 USDC per successful call via x402 on Base, and only charges on success — making it ideal for high-frequency agentic pipelines where predictability and low cost matter.

## Known failure modes

- Text exceeds 100,000 character limit — returns a structured validation error (not billed)
- No numbers found in text — returns an empty list
- Malformed request body — returns a structured validation error (not billed)
- Payment not attached or insufficient — returns 402 payment required

## How this service works

Extract numbers from free text. Call when scraping prices, IDs, quantities, or scores out of messy agent-collected text. Returns the ordered list of numbers found—no LLM, no regex maintainance on your side. $0.001 USDC per successful call via x402 on Base—deterministic first-party JSON, no API key, no subscription, and nothing is billed on structured validation errors.

## Output

An ordered JSON list of numbers found in the submitted text, in the sequence they appear — no LLM interpretation, no regex setup required, just the raw numeric values extracted deterministically.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "maxLength": 100000,
   "description": "Primary text input (max 100k chars). Processed first-party; not retained as a dataset."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 0,
  "schema": "delx/extract-numbers/v1",
  "numbers": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-extract-numbers-6965be49/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)
