{
  "format": "delx/intent-card/v1",
  "id": "json-array-chunk-api",
  "intent": "JSON Array Chunk for an agent workflow",
  "title": "JSON Array Chunk API for agents",
  "description": "JSON Array Chunk: JSON Array Chunk chunks a JSON array into bounded ordered groups from bounded caller-supplied values without an external provider. Call JSON Array Chunk before an agent hands structured data or a batch plan to a downstream tool with a stricter contract. Returns the bounded transformation or validation finding with counts, normalized values, and a versioned result contract for JSON Array Chunk as versioned deterministic JSON. Price: $0.001 USDC via x402 on Base. First-party, stateless, memory-only execution with no paid upstream, live RPC, web search, credentials, custody, signing, media generator, or input retention. Honest limit: Processes bounded caller-supplied data in memory only; it performs no file fetch, database write, code execution, or retention. Advisory output only; the buyer owns authorization, payment policy, and production decisions.",
  "keywords": [
    "JSON Array Chunk API",
    "JSON Array Chunk for agents",
    "pay per result API",
    "x402 API",
    "no API key"
  ],
  "updated_at": "2026-08-23",
  "canonical_url": "https://commerce.delx.ai/intents/json-array-chunk-api",
  "machine_url": "https://commerce.delx.ai/intents/json-array-chunk-api.json",
  "recommendation": {
    "tool_name": "util_json_array_chunk",
    "service_name": "JSON Array Chunk",
    "method": "POST",
    "resource": "https://api.delx.ai/api/v1/x402/json-array-chunk",
    "price_usdc": "0.001",
    "payment_protocols": [
      "x402",
      "mpp"
    ],
    "input_schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "type": "object",
      "properties": {
        "items": {
          "type": "array",
          "maxItems": 256,
          "items": {
            "type": "integer"
          },
          "description": "Items supplied to JSON Array Chunk; used only for this bounded calculation and processed in memory without retention."
        },
        "chunk_size": {
          "type": "integer",
          "description": "Chunk Size supplied to JSON Array Chunk; used only for this bounded calculation and processed in memory without retention."
        }
      },
      "required": [
        "items",
        "chunk_size"
      ],
      "additionalProperties": false
    },
    "example_input": {
      "items": [
        1,
        2,
        3,
        4,
        5
      ],
      "chunk_size": 2
    },
    "example_output": {
      "schema": "delx/util-json-array-chunk/v1",
      "operation": "data_batch:json_array_chunk",
      "status": "pass",
      "result": {
        "chunks": [
          [
            1,
            2
          ],
          [
            3,
            4
          ],
          [
            5
          ]
        ],
        "chunk_count": 3
      },
      "evidence": {
        "input_sha256": "4f72dbceaad27a26b92491017b889f01572529f0ffda27f5e6d7e08169769ac8",
        "retained": false,
        "external_calls": 0
      }
    },
    "agentcash": {
      "buy": "npx agentcash@latest fetch https://api.delx.ai/api/v1/x402/json-array-chunk -m POST -H 'x-delx-source: intent-card-json-array-chunk-api' --max-amount 0.001 -b '{\"items\":[1,2,3,4,5],\"chunk_size\":2}'",
      "max_amount_usdc": "0.001"
    }
  },
  "attribution": {
    "header": "x-delx-source",
    "value": "intent-card-json-array-chunk-api"
  },
  "evidence": {
    "paid_openapi": "https://api.delx.ai/openapi.x402.json",
    "governed_portfolio": "https://api.delx.ai/x402-portfolio.json",
    "live_contract": "https://api.delx.ai/api/v1/x402/json-array-chunk"
  }
}
