Government Trade Reports
curl --request GET \
--url 'https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token='import requests
url = "https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{
"amendment_number": 0,
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034767.pdf",
"filer_info": {
"chamber": "House",
"committees": {
"Committee on Ways and Means": [
"Health",
"Tax"
]
},
"display_name": "Mike Kelly",
"district": "16",
"headshot": "https://clerk.house.gov/content/assets/img/members/K000376.jpg",
"id": "63e7f79a7f74dda3e85f4708",
"leadership_positions": [],
"member_id": "K000376",
"member_name": "Mike Kelly",
"party": "R",
"state": "PA",
"status": "Member",
"updated": 1781269366,
"website": "https://kelly.house.gov"
},
"id": "",
"latest": true,
"report_date": "2026-06-11",
"report_id": "20034767",
"transactions": [
{
"amendment_number": 0,
"amount": "$15,001 - $50,000",
"chamber": "House",
"description": "",
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034767.pdf",
"id": "6a2c0382e5e451d46951d38b",
"notification_date": "2026-06-10",
"ownership": "SP",
"report_date": "2026-06-11",
"report_id": "20034767",
"security": {
"name": "Bristol-Myers Squibb",
"ticker": "BMY",
"type": "STOCK"
},
"transaction_date": "2026-05-07",
"transaction_id": "d5a2f4a3beaa8c33ffea76df6c6c95b7204c7d12",
"transaction_type": "S",
"updated": 1781269378
},
{
"amendment_number": 0,
"amount": "$1,001 - $15,000",
"chamber": "House",
"description": "",
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034767.pdf",
"id": "6a2c0382e5e451d46951d38c",
"notification_date": "2026-06-10",
"ownership": "SP",
"report_date": "2026-06-11",
"report_id": "20034767",
"security": {
"name": "Comcast",
"ticker": "CMCSA",
"type": "STOCK"
},
"transaction_date": "2026-05-07",
"transaction_id": "a600b7f426dd085cf5d1bc0f756ecc9b61e2e059",
"transaction_type": "S",
"updated": 1781269378
}
],
"updated": 1781269378
}
]
}
{
"ok": false,
"errors": [
{
"code": "auth_failed",
"id": "unauthorized",
"value": "Invalid or missing authentication token"
}
]
}
{
"ok": false,
"errors": [
{
"code": "no_data_found",
"id": "not_found",
"value": "No data found for the specified parameters"
}
]
}
{
"ok": false,
"errors": [
{
"code": "internal_server_error",
"id": "server_error",
"value": "An unexpected error occurred while processing your request"
}
]
}
정부 거래
정부 거래 보고서
GET
/
api
/
v1
/
gov
/
usa
/
congress
/
trades
/
reports
Government Trade Reports
curl --request GET \
--url 'https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token='import requests
url = "https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token=', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token="
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v1/gov/usa/congress/trades/reports?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": [
{
"amendment_number": 0,
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034767.pdf",
"filer_info": {
"chamber": "House",
"committees": {
"Committee on Ways and Means": [
"Health",
"Tax"
]
},
"display_name": "Mike Kelly",
"district": "16",
"headshot": "https://clerk.house.gov/content/assets/img/members/K000376.jpg",
"id": "63e7f79a7f74dda3e85f4708",
"leadership_positions": [],
"member_id": "K000376",
"member_name": "Mike Kelly",
"party": "R",
"state": "PA",
"status": "Member",
"updated": 1781269366,
"website": "https://kelly.house.gov"
},
"id": "",
"latest": true,
"report_date": "2026-06-11",
"report_id": "20034767",
"transactions": [
{
"amendment_number": 0,
"amount": "$15,001 - $50,000",
"chamber": "House",
"description": "",
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034767.pdf",
"id": "6a2c0382e5e451d46951d38b",
"notification_date": "2026-06-10",
"ownership": "SP",
"report_date": "2026-06-11",
"report_id": "20034767",
"security": {
"name": "Bristol-Myers Squibb",
"ticker": "BMY",
"type": "STOCK"
},
"transaction_date": "2026-05-07",
"transaction_id": "d5a2f4a3beaa8c33ffea76df6c6c95b7204c7d12",
"transaction_type": "S",
"updated": 1781269378
},
{
"amendment_number": 0,
"amount": "$1,001 - $15,000",
"chamber": "House",
"description": "",
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034767.pdf",
"id": "6a2c0382e5e451d46951d38c",
"notification_date": "2026-06-10",
"ownership": "SP",
"report_date": "2026-06-11",
"report_id": "20034767",
"security": {
"name": "Comcast",
"ticker": "CMCSA",
"type": "STOCK"
},
"transaction_date": "2026-05-07",
"transaction_id": "a600b7f426dd085cf5d1bc0f756ecc9b61e2e059",
"transaction_type": "S",
"updated": 1781269378
}
],
"updated": 1781269378
}
]
}
{
"ok": false,
"errors": [
{
"code": "auth_failed",
"id": "unauthorized",
"value": "Invalid or missing authentication token"
}
]
}
{
"ok": false,
"errors": [
{
"code": "no_data_found",
"id": "not_found",
"value": "No data found for the specified parameters"
}
]
}
{
"ok": false,
"errors": [
{
"code": "internal_server_error",
"id": "server_error",
"value": "An unexpected error occurred while processing your request"
}
]
}
{
"data": [
{
"amendment_number": 0,
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034767.pdf",
"filer_info": {
"chamber": "House",
"committees": {
"Committee on Ways and Means": [
"Health",
"Tax"
]
},
"display_name": "Mike Kelly",
"district": "16",
"headshot": "https://clerk.house.gov/content/assets/img/members/K000376.jpg",
"id": "63e7f79a7f74dda3e85f4708",
"leadership_positions": [],
"member_id": "K000376",
"member_name": "Mike Kelly",
"party": "R",
"state": "PA",
"status": "Member",
"updated": 1781269366,
"website": "https://kelly.house.gov"
},
"id": "",
"latest": true,
"report_date": "2026-06-11",
"report_id": "20034767",
"transactions": [
{
"amendment_number": 0,
"amount": "$15,001 - $50,000",
"chamber": "House",
"description": "",
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034767.pdf",
"id": "6a2c0382e5e451d46951d38b",
"notification_date": "2026-06-10",
"ownership": "SP",
"report_date": "2026-06-11",
"report_id": "20034767",
"security": {
"name": "Bristol-Myers Squibb",
"ticker": "BMY",
"type": "STOCK"
},
"transaction_date": "2026-05-07",
"transaction_id": "d5a2f4a3beaa8c33ffea76df6c6c95b7204c7d12",
"transaction_type": "S",
"updated": 1781269378
},
{
"amendment_number": 0,
"amount": "$1,001 - $15,000",
"chamber": "House",
"description": "",
"disclosure_url": "https://disclosures-clerk.house.gov/public_disc/ptr-pdfs/2026/20034767.pdf",
"id": "6a2c0382e5e451d46951d38c",
"notification_date": "2026-06-10",
"ownership": "SP",
"report_date": "2026-06-11",
"report_id": "20034767",
"security": {
"name": "Comcast",
"ticker": "CMCSA",
"type": "STOCK"
},
"transaction_date": "2026-05-07",
"transaction_id": "a600b7f426dd085cf5d1bc0f756ecc9b61e2e059",
"transaction_type": "S",
"updated": 1781269378
}
],
"updated": 1781269378
}
]
}
{
"ok": false,
"errors": [
{
"code": "auth_failed",
"id": "unauthorized",
"value": "Invalid or missing authentication token"
}
]
}
{
"ok": false,
"errors": [
{
"code": "no_data_found",
"id": "not_found",
"value": "No data found for the specified parameters"
}
]
}
{
"ok": false,
"errors": [
{
"code": "internal_server_error",
"id": "server_error",
"value": "An unexpected error occurred while processing your request"
}
]
}
인증
쿼리 매개변수
Page number
Page size
Date from
Date to
Updated since
Date
Chamber
사용 가능한 옵션:
"House", "Senate" Fields
Search keys type
사용 가능한 옵션:
"report_id", "ticker" Search keys
응답
Government Trade Reports
API response containing an array of government trade report records
Show child attributes
Show child attributes
⌘I