Periodic transaction report tracker for the US House: each entry is one filing event — mem
Periodic transaction report tracker for the US House: each entry is one filing event — member, district, date, document id, PDF link — so an agent can poll for fresh trade disclosures and fetch parsed rows from the companion trades endpoint. Covers all filing types with a code legend in every response.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-20
updated
Provider
x402.forgemesh.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x850363a27F0aC6fEb9C7a3eC4C1d295262dF9432",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"filing_type": "P",
"limit": 5,
"state": "VA"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"attribution": "US House Clerk financial disclosures (public domain)",
"filings": [
{
"chamber": "house",
"doc_id": "20034916",
"filing_date": "7/10/2026",
"filing_type": "P",
"filing_type_label": "periodic transaction report (STOCK Act trades)",
"first": "Robert J.",
"last": "Wittman",
"pdf_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034916.pdf",
"state_district": "VA01",
"year": 2026
}
],
"matched": 14,
"returned": 5
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"filing_type": {
"description": "filing type code, e.g. 'P' for periodic transaction report",
"type": "string"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"member": {
"description": "member name substring",
"type": "string"
},
"state": {
"description": "state or district prefix, e.g. 'TX' or 'TX02'",
"type": "string"
},
"year": {
"description": "filing year, e.g. 2026",
"type": "integer"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"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"
}
},
"info": {
"required": false
},
"offer-receipt": {
"info": {
"offers": [
{
"acceptIndex": 0,
"format": "eip712",
"payload": {
"amount": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "eip155:8453",
"payTo": "0x850363a27F0aC6fEb9C7a3eC4C1d295262dF9432",
"resourceUrl": "https://x402.forgemesh.io/congress-ptr-tracker",
"scheme": "exact",
"validUntil": 1787248364,
"version": 1
},
"signature": "0x32323e87f93183f9089e410ee42cbb32e261bfba815b80b5c0462addf6e664d013432d8d09f0ac64adce6c11c2b109deabf57261ecffd82540cc04ea150e1bd91b"
}
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"offers": {
"items": {
"properties": {
"acceptIndex": {
"type": "integer"
},
"format": {
"type": "string"
},
"payload": {
"properties": {
"amount": {
"type": "string"
},
"asset": {
"type": "string"
},
"network": {
"type": "string"
},
"payTo": {
"type": "string"
},
"resourceUrl": {
"type": "string"
},
"scheme": {
"type": "string"
},
"validUntil": {
"type": "integer"
},
"version": {
"type": "integer"
}
},
"required": [
"version",
"resourceUrl",
"scheme",
"network",
"asset",
"payTo",
"amount"
],
"type": "object"
},
"signature": {
"type": "string"
}
},
"required": [
"format",
"signature"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"offers"
],
"type": "object"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}Use it
curl
curl "https://x402.forgemesh.io/congress-ptr-tracker" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.forgemesh.io/congress-ptr-tracker");
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://x402.forgemesh.io/congress-ptr-tracker")
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/14290.json, and this resource appears in /discovery/resources and /discovery/search.