# Delx Array Drop

> Delx Array Drop 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).

Drops the first N elements from a JSON array, returning the remaining items and their count

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/arr-drop
- 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-array-drop-f86cf14b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6pqdWmFqHNvrv8KlhHdMS

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-array-drop-f86cf14b -d '<json body>'
```

Example prompt: I have this JSON array of rows and I want to skip the first 3 elements — can you drop those and give me the remaining items with a count?

## When to prefer this

Choose this endpoint when you need a simple, stateless, pay-per-call array slice operation with no infrastructure setup. Ideal for agents that need to skip headers, resume mid-list processing, or remove already-handled leading elements without writing custom code. Best for local JSON manipulation where no network fetch or external data source is involved.

## Known failure modes

- N exceeds array length — returns empty array with count 0
- Non-integer N — validation error
- Items field is not an array — schema validation error
- N is negative — may error or return full array depending on implementation

## How this service works

Drop the first N elements. Call when you skip headers or already-processed agent rows. Returns remaining items 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 the remaining array elements after the first N have been removed, along with a count of how many items remain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "n": {
   "type": "integer",
   "description": "Input field: n."
  },
  "items": {
   "type": "array",
   "description": "Input field: items."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "items": [
   3,
   4
  ],
  "schema": "delx/util-arr-drop/v1"
 }
}
```

## More

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