Use when an agent needs batch extract
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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
379 msmedian answer time
$0.02listed price per call
$0.02price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.oblique.markets/api/v1/paid/batch-extract
| Category | Search and research |
|---|---|
| Provider host | api.oblique.markets |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 379 ms |
Example input (from the provider)
{
"body": {
"idempotency_key": "example",
"items": [
{
"schema": {},
"url": "HTTPS page to extract"
}
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}
},
"required": [
"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": {
"artifact_hash": {
"type": "string"
},
"completed_at": {
"type": "string"
},
"completed_count": {
"type": "integer"
},
"failed_count": {
"type": "integer"
},
"idempotency_key": {
"type": "string"
},
"manifest_reconciled": {
"type": "boolean"
},
"payment_tx_hash": {
"type": "string"
},
"reconciled_charge_usdc": {
"type": "string"
},
"refundable_amount_usdc": {
"type": "string"
},
"results": {
"items": {
"properties": {
"artifact_hash": {
"type": "string"
},
"data": {
"properties": {
"title": {
"type": "string"
}
},
"type": "object"
},
"index": {
"type": "integer"
},
"runtime_ms": {
"type": "integer"
},
"source": {
"type": "string"
},
"status": {
"type": "string"
},
"url": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"runtime_ms": {
"type": "integer"
},
"status": {
"type": "string"
},
"submitted_count": {
"type": "integer"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}