# Delx Pagination Plan

> Delx Pagination Plan is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-16).

Infers a bounded cursor, link, or page pagination plan from a response envelope, returning a deterministic machine-readable JSON plan

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/pagination-plan
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-pagination-plan-69f8bfa9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rfVHVbefYusNNHdppPFK5

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-pagination-plan-69f8bfa9 -d '<json body>'
```

Example prompt: Can you analyze this API response envelope and tell me what pagination strategy it uses — cursor, link, or page-based — and give me the plan for fetching the next set of results?

## When to prefer this

Use this endpoint when you need a fast, stateless, cost-effective preflight analysis of an API response envelope to determine its pagination strategy before implementing iteration logic in an agent workflow. Prefer it over custom parsing code when the pagination type is unknown or ambiguous, or when you want a deterministic machine-readable output to drive downstream workflow decisions without retaining input data.

## Known failure modes

- Response envelope contains no recognizable pagination metadata — plan may return null or unknown type
- Ambiguous pagination signals in the envelope — multiple strategies detected with no clear winner
- Malformed or empty response object — returns error or empty plan
- Non-standard pagination patterns not covered by the inference model — advisory results may be incomplete

## How this service works

Infer a bounded cursor, link, or page pagination plan from a response envelope. Use it as a bounded preflight or analysis step inside an enterprise agent workflow before data, policy, integration, security, or commercial decisions reach production. Returns deterministic machine-readable JSON for $0.003 USDC via x402 on Base. Execution is first-party, local-only, stateless, memory-only, and has no paid upstream or input retention. Results are advisory; the caller remains responsible for authoriz…

## Output

A deterministic machine-readable JSON object describing the detected pagination type (cursor, link, or page-based), extracted pagination tokens or cursors, next-page references, and a structured plan for iterating through subsequent pages of results.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "cursor",
  "schema": "delx/util-pagination-plan/v1",
  "has_next": true,
  "next_reference": "abc",
  "stop_condition": "next reference absent",
  "max_pages_recommended": 100
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-pagination-plan-69f8bfa9/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)
