# Delx Extract Ints

> Delx Extract Ints 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 all signed integers from free-form text and returns them as a list with a count

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/extract-ints
- 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-extract-ints-dd83e0c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ity17HQ6d4KWF8DTgIbwV

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-ints-dd83e0c2 -d '<json body>'
```

Example prompt: Pull all the signed integers out of this log line for me: 'Connection failed on port 8080 after 3 retries, error code -404, timeout 30s'.

## When to prefer this

Choose this endpoint when you need a lightweight, no-setup way to reliably extract signed integers from unstructured or messy text such as logs, config dumps, or agent output — especially in agentic pipelines where you want a local, stateless operation with no data retention and micropayment-based access via x402 on Base.

## Known failure modes

- Empty or whitespace-only input may return an empty list with count 0
- Non-text or binary input may produce unexpected results
- Payment failure via x402 will block the request before processing
- Very long text inputs may hit size limits

## How this service works

Extract signed integers from free text. Call when you parse IDs, ports, or quantities out of messy agent logs. Returns integer list 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 a JSON object containing a list of all signed integers found in the input text and the total count of integers extracted.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 3,
  "schema": "delx/util-extract-ints/v1",
  "values": [
   42,
   19,
   -3
  ]
 }
}
```

## More

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