Skip to main content
POST
/
api
/
google
/
finance
/
quotes
/
congress
/google/finance/quotes/congress
curl --request POST \
  --url https://api.anysite.io/api/google/finance/quotes/congress \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ticker": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "name": "<string>",
    "@type": "@google_finance_congress_trade",
    "chamber": "<string>",
    "party": "<string>",
    "district": "<string>",
    "owner": "<string>",
    "year": 123,
    "trade_value_low": 123,
    "trade_value_estimate": 123,
    "trade_value_high": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
ticker
string
required

Ticker in SYMBOL:EXCHANGE form

Pattern: ^[A-Za-z0-9.\-]{1,15}:[A-Za-z0-9.\-]{1,15}$
Examples:

"GOOGL:NASDAQ"

"AAPL:NASDAQ"

"TSLA:NASDAQ"

count
integer
required

Maximum number of congressional trade disclosures to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

name
string
required
@type
string
default:@google_finance_congress_trade
chamber
string | null
party
string | null
district
string | null
owner
string | null
year
integer | null
trade_value_low
integer | null
trade_value_estimate
integer | null
trade_value_high
integer | null