← oblique.markets · all endpoints

POST /api/v1/paid/batch-extract — $0.02 per call

Use when an agent needs batch extract. Returns Run up to 10 public URL JSON extractions in isolated ephemeral compute against caller-supplied JSON Schemas with idempotent reconciliation. $0.02.

Price$0.02 per call (20000 atomic USDC, scheme exact)
Categorydata-services
Railsx402 · USDC on Base (eip155:8453) and Solana · MPP pathUSD on Tempo
Canonical URLhttps://api.oblique.markets/api/v1/paid/batch-extract

Try it

curl -i https://api.oblique.markets/api/v1/paid/batch-extract
# → HTTP 402 with the exact payment requirements; pay, then retry with PAYMENT-SIGNATURE (x402) or Authorization: Payment (MPP)

Input schema

{
 "type": "object",
 "required": [
  "items",
  "idempotency_key"
 ],
 "properties": {
  "items": {
   "type": "array",
   "minItems": 1,
   "maxItems": 10,
   "items": {
    "type": "object",
    "required": [
     "url",
     "schema"
    ],
    "properties": {
     "url": {
      "type": "string",
      "format": "uri",
      "description": "HTTPS page to extract"
     },
     "schema": {
      "type": "object",
      "description": "JSON Schema for the extracted JSON value"
     }
    }
   }
  },
  "idempotency_key": {
   "type": "string",
   "minLength": 1,
   "maxLength": 128
  }
 }
}

Example output

{
 "status": "fulfilled",
 "manifest_reconciled": true,
 "idempotency_key": "batch-2026-08-22-1",
 "submitted_count": 2,
 "completed_count": 1,
 "failed_count": 1,
 "runtime_ms": 1842,
 "artifact_hash": "sha256:9f86d081884c7d659a2feaa0c55ad015...",
 "results": [
  {
   "index": 0,
   "status": "completed",
   "url": "https://example.com",
   "data": {
    "title": "Example Domain"
   },
   "source": "metadata",
   "runtime_ms": 910,
   "artifact_hash": "sha256:2bb80d537b1da3e38bd30361aa855686..."
  },
  {
   "index": 1,
   "status": "failed",
   "url": "https://invalid.example",
   "failure_code": "upstream_http",
   "runtime_ms": 932,
   "artifact_hash": null
  }
 ],
 "reconciled_charge_usdc": "0.020000",
 "refundable_amount_usdc": "0.000000",
 "payment_tx_hash": "0xabc123...",
 "completed_at": "2026-08-22T12:00:00.000Z"
}

Clients

Worked TypeScript/Python clients and MCP configs: oblique-markets/oblique-examples · Agent Skills: oblique-markets/skills

Pay per call with x402 (USDC on Base or Solana) or MPP (pathUSD on Tempo). No accounts. Machine doors: /.well-known/x402.json · /openapi.json · /llms-full.txt · MCP · humans: remote.observer