Recent stock trades disclosed by US members of Congress under the STOCK Act, parsed live f
Recent stock trades disclosed by US members of Congress under the STOCK Act, parsed live from official House and Senate Periodic Transaction Reports: per trade the member, chamber, ticker, asset, buy/sell type, date, and disclosed dollar range. ?chamber=house|senate|both, ?ticker=AAPL, ?limit= recent filings per chamber (max 20). From US House & Senate. From x402stock
30000 (raw units)
price
7
calls / 30d
2
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": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"chamber": "house",
"limit": 7
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-05-31T00:00:00.000Z",
"chamber": "house",
"disclosure": "stock_act_periodic_transaction_report",
"source": "us_house",
"trade_count": 1,
"trades": [
{
"amount_max": 15000,
"amount_min": 1001,
"amount_range": "$1,001 - $15,000",
"asset": "Apple Inc. - Common Stock",
"asset_type": "ST",
"chamber": "house",
"district": "HI01",
"doc_id": "20034668",
"filing_date": "2026-05-31",
"member": "Hon. Ed Case",
"notification_date": "2026-05-14",
"owner": null,
"pdf_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034668.pdf",
"state": "HI",
"ticker": "AAPL",
"transaction_code": "P",
"transaction_date": "2026-05-14",
"transaction_type": "purchase"
}
]
},
"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": {
"chamber": {
"default": "house",
"enum": [
"house",
"senate",
"both"
],
"type": "string"
},
"limit": {
"default": 7,
"exclusiveMinimum": 0,
"maximum": 20,
"type": "integer"
},
"ticker": {
"maxLength": 10,
"minLength": 1,
"type": "string"
}
},
"required": [
"limit",
"chamber"
],
"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": {
"as_of": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"chamber": {
"enum": [
"house",
"senate",
"both"
],
"type": "string"
},
"disclosure": {
"type": "string"
},
"source": {
"enum": [
"us_house",
"us_senate",
"us_congress"
],
"type": "string"
},
"trade_count": {
"type": "number"
},
"trades": {
"items": {
"additionalProperties": false,
"properties": {
"amount_max": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"amount_min": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"amount_range": {
"type": "string"
},
"asset": {
"type": "string"
},
"asset_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"chamber": {
"enum": [
"house",
"senate"
],
"type": "string"
},
"district": {
"type": "string"
},
"doc_id": {
"type": "string"
},
"filing_date": {
"type": "string"
},
"member": {
"type": "string"
},
"notification_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"owner": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"pdf_url": {
"type": "string"
},
"state": {
"type": "string"
},
"ticker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"transaction_code": {
"type": "string"
},
"transaction_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"transaction_type": {
"type": "string"
}
},
"required": [
"chamber",
"member",
"state",
"district",
"filing_date",
"doc_id",
"pdf_url",
"asset",
"ticker",
"asset_type",
"owner",
"transaction_type",
"transaction_code",
"transaction_date",
"notification_date",
"amount_range",
"amount_min",
"amount_max"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"source",
"as_of",
"chamber",
"disclosure",
"trade_count",
"trades"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402stock.xyz/api/v1/congress-trades" # -> 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/congress-trades");
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/congress-trades")
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/5258.json, and this resource appears in /discovery/resources and /discovery/search.