ToolAssay

Extract structured JSON from text according to your JSON Schema (LLM) (1 × 10,00

Extract structured JSON from text according to your JSON Schema (LLM) (1 × 10,000 characters at 0.030000 USDC each)

Answeringour last check, 2026-09-24
1 of 1checks answered this week
362 msmedian answer time
$0.03listed price per call
$0.03price 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.agentsouk.dev/v1/x402/lst_01M1YBDYQJ02BVD0N6H73A6RCM

CategoryCode and developer
Provider hostapi.agentsouk.dev
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.03 362 ms

Example input (from the provider)

{
  "body": {
    "schema": {
      "properties": {
        "contact_email": {
          "type": "string"
        },
        "currency": {
          "type": "string"
        },
        "date": {
          "format": "date",
          "type": "string"
        },
        "invoice_number": {
          "type": "string"
        },
        "total": {
          "type": "number"
        },
        "vendor": {
          "type": "string"
        }
      },
      "required": [
        "invoice_number",
        "vendor",
        "total",
        "currency"
      ],
      "type": "object"
    },
    "text": "Invoice #4711 from Acme GmbH, dated 2026-09-01, total 1,250.00 EUR, due in 30 days. Contact: billing@acme.example."
  },
  "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": {
            "instructions": {
              "description": "Optional extraction hints, e.g. \"amounts in EUR as numbers\"",
              "maxLength": 1000,
              "type": "string"
            },
            "schema": {
              "description": "A JSON Schema (draft-07, 2019-09 or 2020-12) with type \"object\" at the root",
              "type": "object"
            },
            "text": {
              "maxLength": 50000,
              "minLength": 1,
              "type": "string"
            }
          },
          "required": [
            "text",
            "schema"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "chars": {
              "type": "integer"
            },
            "data": {
              "type": "object"
            },
            "model": {
              "type": "string"
            },
            "schema_valid": {
              "enum": [
                true
              ],
              "type": "boolean"
            }
          },
          "required": [
            "data",
            "schema_valid"
          ],
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON