POST a URL; get clean, LLM-ready content (Markdown/text/JSON) plus a prompt-injection risk
POST a URL; get clean, LLM-ready content (Markdown/text/JSON) plus a prompt-injection risk verdict (clean | suspicious | flagged). A defense layer for agents and RAG pipelines, not a guarantee.
4000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-17
updated
Provider
odood.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xa2C0C48c1a8BA19a832fD77Fa77963a897e5fb18",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "4000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"format": "markdown",
"url": "https://en.wikipedia.org/wiki/Large_language_model"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"data": {
"content_md": "# Example article\\n\\nClean, LLM-ready Markdown…",
"injection": {
"risk_score": 0.02,
"verdict": "clean"
},
"lang": "en",
"sanitized": true,
"title": "Example article",
"word_count": 812
},
"ok": true
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"allow_thin": {
"default": false,
"description": "Return content from pages below the usable-article threshold instead of a 422 thin_content error.",
"type": "boolean"
},
"format": {
"default": "markdown",
"enum": [
"markdown",
"text",
"json"
],
"type": "string"
},
"include_removed": {
"default": true,
"type": "boolean"
},
"sanitize": {
"default": true,
"type": "boolean"
},
"url": {
"description": "The http(s) URL to extract.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"queryParams": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://odood.com/v1/extract" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://odood.com/v1/extract");
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://odood.com/v1/extract")
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/13477.json, and this resource appears in /discovery/resources and /discovery/search.