Complete reviewed Textus Reading Artifact; revision 1
Complete reviewed Textus Reading Artifact; revision 1.4+sha256.0182c8a5cd64; digest sha256:0182c8a5cd645d7f2a1c4afdf96b9a8ab6cb2b33cdd656dd4f85f2e25d337cb6; terms 1.2.0: https://api.textus.dev/api/v1/story-reading.terms.json
490000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-25
updated
Provider
api.textus.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xa7dc8879743Df27c4937dF48e5281b67D279E5E6",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "490000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"id": "der-suesse-brei"
},
"type": "http"
},
"output": {
"example": {
"editorialDirectionIncluded": true,
"schemaVersion": "1.4",
"story": {
"id": "der-suesse-brei"
}
},
"format": "https://api.textus.dev/api/v1/story-reading.schema.json",
"type": "json"
}
},
"routeTemplate": "/api/v1/stories/:id/reading.json",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"const": "GET"
},
"pathParams": {
"properties": {
"id": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"type": {
"const": "http"
}
},
"required": [
"type",
"method",
"pathParams"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"const": "json"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}
},
"textus": {
"code": "payment_required",
"message": "PAYMENT-SIGNATURE header is required.",
"requestId": "297c55531882b34ad6f51dea",
"retryable": true,
"version": "1.0"
}
}Use it
curl
curl "https://api.textus.dev/api/v1/stories/:id/reading.json" # -> 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.textus.dev/api/v1/stories/:id/reading.json");
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.textus.dev/api/v1/stories/:id/reading.json")
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/13625.json, and this resource appears in /discovery/resources and /discovery/search.