Proof-gated batch JSON extraction for up to 10 public URLs in isolated Daytona or Modal co
Proof-gated batch JSON extraction for up to 10 public URLs in isolated Daytona or Modal compute with reconciled delivery and idempotent retries
20000 (raw units)
price
4
calls / 30d
1
unique payers
2026-08-23
updated
Provider
api.oblique.markets · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"idempotency_key": "example",
"items": [
{
"schema": {},
"url": "HTTPS page to extract"
}
],
"x401_proof": {
"aud": "api.oblique.markets",
"exp": 1,
"nonce": "example",
"route": "example",
"sub": "Payment subject (buyer wallet or agent identity)"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"artifact_hash": "sha256:9f86d081884c7d659a2feaa0c55ad015...",
"completed_count": 1,
"failed_count": 1,
"fulfillment_timestamp": "2026-08-22T12:00:00.000Z",
"payment_reference": {
"amount_atomic": "20000",
"network": "eip155:8453",
"status": "settled",
"transaction": "0xabc123..."
},
"proof_status": "verified",
"results": [
{
"artifact_hash": "sha256:2bb80d537b1da3e38bd30361aa855686...",
"data": {
"title": "Example Domain"
},
"index": 0,
"status": "completed",
"url": "https://example.com"
},
{
"artifact_hash": null,
"failure_code": "upstream_http",
"index": 1,
"status": "failed",
"url": "https://invalid.example"
}
],
"runtime_ms": 1842,
"status": "fulfilled",
"submitted_count": 2
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"idempotency_key": {
"type": "string"
},
"items": {
"items": {
"properties": {
"schema": {
"description": "JSON Schema for the extracted JSON value",
"type": "object"
},
"url": {
"description": "HTTPS page to extract",
"type": "string"
}
},
"required": [
"url",
"schema"
],
"type": "object"
},
"type": "array"
},
"x401_proof": {
"properties": {
"aud": {
"description": "api.oblique.markets",
"type": "string"
},
"exp": {
"description": "Unix expiry in seconds",
"type": "integer"
},
"nonce": {
"type": "string"
},
"request_hash": {
"type": "string"
},
"route": {
"type": "string"
},
"sub": {
"description": "Payment subject (buyer wallet or agent identity)",
"type": "string"
}
},
"required": [
"route",
"sub",
"aud",
"exp",
"nonce"
],
"type": "object"
}
},
"required": [
"x401_proof",
"items",
"idempotency_key"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.oblique.markets/api/v1/paid/x401-batch-extract" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.oblique.markets/api/v1/paid/x401-batch-extract");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.oblique.markets/api/v1/paid/x401-batch-extract")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/567.json, and this resource appears in /discovery/resources and /discovery/search.