ToolAssay

Use when an agent needs batch url json

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.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
25 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-url-json

CategoryEverything else
Provider hostapi.oblique.markets
Networkseip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days5 from 2 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.02 25 ms

Example input (from the provider)

{
  "body": {
    "idempotency_key": "example",
    "jobs": [
      {
        "url": "HTTPS page to fetch"
      }
    ]
  },
  "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"
            },
            "jobs": {
              "items": {
                "properties": {
                  "url": {
                    "description": "HTTPS page to fetch",
                    "type": "string"
                  }
                },
                "required": [
                  "url"
                ],
                "type": "object"
              },
              "type": "array"
            }
          },
          "required": [
            "jobs",
            "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": {
        "completed_at": {
          "type": "string"
        },
        "failed_jobs": {
          "type": "integer"
        },
        "fulfilled_jobs": {
          "type": "integer"
        },
        "idempotency_key": {
          "type": "string"
        },
        "payment_tx_hash": {
          "type": "string"
        },
        "reconciled": {
          "type": "boolean"
        },
        "results": {
          "items": {
            "properties": {
              "data": {
                "properties": {
                  "@type": {
                    "type": "string"
                  },
                  "headline": {
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "index": {
                "type": "integer"
              },
              "source": {
                "type": "string"
              },
              "status": {
                "type": "string"
              },
              "url": {
                "type": "string"
              }
            },
            "type": "object"
          },
          "type": "array"
        },
        "status": {
          "type": "string"
        },
        "total_jobs": {
          "type": "integer"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON