← oblique.markets · all endpoints
Use when an agent needs batch url json. Returns Prepaid batch of up to 10 HTTPS URL-to-JSON extraction jobs with one idempotent reconciled completion receipt. $0.02.
| Price | $0.02 per call (20000 atomic USDC, scheme exact) |
|---|---|
| Category | data-services |
| Rails | x402 · USDC on Base (eip155:8453) and Solana · MPP pathUSD on Tempo |
| Canonical URL | https://api.oblique.markets/api/v1/paid/batch-url-json |
curl -i https://api.oblique.markets/api/v1/paid/batch-url-json # → HTTP 402 with the exact payment requirements; pay, then retry with PAYMENT-SIGNATURE (x402) or Authorization: Payment (MPP)
{
"type": "object",
"required": [
"jobs",
"idempotency_key"
],
"properties": {
"jobs": {
"type": "array",
"minItems": 1,
"maxItems": 10,
"items": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "HTTPS page to fetch"
}
}
}
},
"idempotency_key": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
}
}{
"status": "fulfilled",
"reconciled": true,
"idempotency_key": "batch-demo-1",
"total_jobs": 2,
"fulfilled_jobs": 2,
"failed_jobs": 0,
"results": [
{
"index": 0,
"status": "fulfilled",
"url": "https://example.com",
"source": "json-ld",
"data": {
"@type": "Article",
"headline": "Example"
}
}
],
"completed_at": "2026-08-14T00:00:00.000Z",
"payment_tx_hash": "0xabc123..."
}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