Proposed/final rules and notices from a federal agency — the regulatory pipeline that repr
Proposed/final rules and notices from a federal agency — the regulatory pipeline that reprices sectors. Pass `?agency=securities-and-exchange-commission` (slug) and/or `?q=` (at least one), plus `?type=all|rule|proposed|notice` and `?limit=` (max 100). Each doc has number, type, title, abstract, dates, agencies, and a link. From x402stock, a market & economic data API (x402, USDC).
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-14
updated
Provider
x402stock.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"agency": "securities-and-exchange-commission",
"limit": 20,
"type": "all"
},
"type": "http"
},
"output": {
"example": {
"agency": "securities-and-exchange-commission",
"as_of": "2026-06-18T12:00:00.000Z",
"attribution": "Source: Federal Register (U.S. National Archives, Office of the Federal Register)",
"count": 1,
"documents": [
{
"abstract": null,
"agencies": [
"Securities and Exchange Commission"
],
"document_number": "2026-12261",
"effective_on": null,
"publication_date": "2026-06-18",
"title": "Self-Regulatory Organizations; NYSE American LLC; Notice of Filing and Immediate Effectiveness of a Proposed Rule Change",
"type": "Notice",
"url": "https://www.federalregister.gov/documents/2026/06/18/2026-12261/self-regulatory-organizations-nyse-american-llc"
}
],
"query": null,
"source": "federal_register",
"total_matched": 10000,
"type": "all"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"agency": {
"maxLength": 120,
"minLength": 2,
"type": "string"
},
"limit": {
"default": 20,
"exclusiveMinimum": 0,
"maximum": 100,
"type": "integer"
},
"q": {
"maxLength": 120,
"minLength": 2,
"type": "string"
},
"type": {
"default": "all",
"enum": [
"all",
"rule",
"proposed",
"notice",
"presidential"
],
"type": "string"
}
},
"required": [
"type",
"limit"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"agency": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"as_of": {
"type": "string"
},
"attribution": {
"type": "string"
},
"count": {
"type": "number"
},
"documents": {
"items": {
"additionalProperties": false,
"properties": {
"abstract": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"agencies": {
"items": {
"type": "string"
},
"type": "array"
},
"document_number": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"effective_on": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"publication_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"document_number",
"type",
"title",
"abstract",
"publication_date",
"effective_on",
"agencies",
"url"
],
"type": "object"
},
"type": "array"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"source": {
"const": "federal_register",
"type": "string"
},
"total_matched": {
"type": "number"
},
"type": {
"type": "string"
}
},
"required": [
"source",
"as_of",
"agency",
"query",
"type",
"total_matched",
"count",
"documents",
"attribution"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402stock.xyz/api/v1/regulatory" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402stock.xyz/api/v1/regulatory");
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://x402stock.xyz/api/v1/regulatory")
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/5280.json, and this resource appears in /discovery/resources and /discovery/search.