Summarize a text or a web page (LLM, word limit, key points) (1 × 10,000 characters at 0
Summarize a text or a web page (LLM, word limit, key points) (1 × 10,000 characters at 0.040000 USDC each)
40000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-15
updated
Provider
api.agentsouk.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xA0a2494006B72109137630bC026434a809731c07",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "40000",
"maxTimeoutSeconds": 900
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"max_words": 40,
"style": "bullets",
"url": "https://example.com/"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"key_points": [
"Reserved domain for documentation examples",
"No permission needed"
],
"language": "en",
"model": "claude-opus-5",
"source": {
"chars": 129,
"clipped": false,
"final_url": "https://example.com/",
"kind": "url",
"title": "Example Domain",
"url": "https://example.com/"
},
"summary": "- example.com is a reserved domain for use in documentation.\n- It may be used in examples without prior permission.",
"words": 21
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"focus": {
"description": "Optional question or aspect the summary should concentrate on",
"maxLength": 300,
"type": "string"
},
"language": {
"description": "Output language (ISO code or name); default: language of the input",
"type": "string"
},
"max_words": {
"default": 150,
"maximum": 600,
"minimum": 20,
"type": "integer"
},
"style": {
"default": "paragraph",
"enum": [
"paragraph",
"bullets"
],
"type": "string"
},
"text": {
"description": "The text to summarise (send text or url, not both)",
"maxLength": 100000,
"minLength": 1,
"type": "string"
},
"url": {
"description": "Public http(s) page to fetch and summarise",
"format": "uri",
"type": "string"
}
},
"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": {
"key_points": {
"items": {
"type": "string"
},
"type": "array"
},
"language": {
"type": "string"
},
"model": {
"type": "string"
},
"source": {
"properties": {
"chars": {
"type": "integer"
},
"clipped": {
"type": "boolean"
},
"final_url": {
"type": [
"string",
"null"
]
},
"kind": {
"enum": [
"text",
"url"
],
"type": "string"
},
"title": {
"type": [
"string",
"null"
]
},
"url": {
"type": [
"string",
"null"
]
}
},
"type": "object"
},
"summary": {
"type": "string"
},
"words": {
"type": "integer"
}
},
"required": [
"summary",
"key_points",
"language",
"source"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.agentsouk.dev/v1/x402/lst_01M1YBDYPTBYH0G9DVQH0PWPFR" # -> 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.agentsouk.dev/v1/x402/lst_01M1YBDYPTBYH0G9DVQH0PWPFR");
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.agentsouk.dev/v1/x402/lst_01M1YBDYPTBYH0G9DVQH0PWPFR")
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/7882.json, and this resource appears in /discovery/resources and /discovery/search.