Fetch one public HTTPS HTML, JSON, XML, or text source and return normalized agent-ready t
Fetch one public HTTPS HTML, JSON, XML, or text source and return normalized agent-ready text, optional literal-match excerpts, a content hash, and an Ed25519-signed receipt. No account or API key.
30000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-25
updated
Provider
evidence.regulavita.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9500075649a70411c81f99c4314f6cff55d12579",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"max_characters": 12000,
"query": "enforcement",
"url": "https://www.sec.gov/newsroom/press-releases"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"content": {
"content_sha256": "sha256:0000000000000000000000000000000000000000000000000000000000000000",
"normalized_text": "SEC press release text...",
"returned_characters": 25,
"total_normalized_characters": 25,
"truncated": false
},
"content_type": "text/html",
"http_status": 200,
"product": "PUBLIC_SOURCE_SNAPSHOT",
"provenance": {
"engine_version": "public-source-snapshot/0.1.0"
},
"query": {
"excerpts": [],
"literal_match_count_returned": 1,
"value": "enforcement"
},
"receipt": {
"algorithm": "Ed25519"
},
"request_id": "public_source_snapshot_example",
"retrieved_at": "2026-08-10T00:00:00Z",
"upgrade": {
"path": "/v1/monitors/source-change"
},
"url": "https://www.sec.gov/newsroom/press-releases"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"max_characters": {
"default": 12000,
"maximum": 50000,
"minimum": 1000,
"type": "integer"
},
"query": {
"description": "Optional literal case-insensitive phrase for excerpts.",
"maxLength": 200,
"type": "string"
},
"url": {
"description": "Public HTTPS source to fetch once.",
"format": "uri",
"maxLength": 2048,
"pattern": "^https://",
"type": "string"
}
},
"required": [
"url"
],
"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": {
"example": {
"properties": {
"content": {
"type": "object"
},
"content_type": {
"type": "string"
},
"http_status": {
"type": "integer"
},
"product": {
"const": "PUBLIC_SOURCE_SNAPSHOT"
},
"provenance": {
"type": "object"
},
"query": {
"type": "object"
},
"receipt": {
"type": "object"
},
"request_id": {
"type": "string"
},
"retrieved_at": {
"format": "date-time",
"type": "string"
},
"upgrade": {
"type": "object"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"request_id",
"product",
"url",
"retrieved_at",
"http_status",
"content_type",
"content",
"query",
"upgrade",
"provenance",
"receipt"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://evidence.regulavita.com/v1/web/source-snapshot" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://evidence.regulavita.com/v1/web/source-snapshot");
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://evidence.regulavita.com/v1/web/source-snapshot")
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/2194.json, and this resource appears in /discovery/resources and /discovery/search.