> ## Documentation Index
> Fetch the complete documentation index at: https://docs.benzinga.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 정부 거래 보고서

<ResponseExample>
  ```json 응답 (200 OK) theme={null}
  {
      "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
          }
      ]
  }
  ```

  ```json 응답 (401 Unauthorized) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "auth_failed",
        "id": "unauthorized",
        "value": "Invalid or missing authentication token"
      }
    ]
  }
  ```

  ```json 응답 (404 Not Found) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "no_data_found",
        "id": "not_found",
        "value": "No data found for the specified parameters"
      }
    ]
  }
  ```

  ```json 응답 (500 Internal Server Error) theme={null}
  {
    "ok": false,
    "errors": [
      {
        "code": "internal_server_error",
        "id": "server_error",
        "value": "An unexpected error occurred while processing your request"
      }
    ]
  }
  ```
</ResponseExample>


## OpenAPI

````yaml ko/openapi/calendar-api.spec.yml GET /api/v1/gov/usa/congress/trades/reports
openapi: 3.0.0
info:
  contact: {}
  description: >-
    This REST API returns structured data for conference calls, dividends,
    earnings (and future earnings dates), economics, pharmaceutical
    announcements, guidance, IPOs, secondary offerings, ratings, M&A activity,
    and splits.
  termsOfService: http://swagger.io/terms/
  title: Calendar API
  version: 2.1.0
servers:
  - url: https://api.benzinga.com
    description: PROD
security: []
paths:
  /api/v1/gov/usa/congress/trades/reports:
    get:
      tags:
        - Government Trade Reports
      summary: Government Trade Reports
      description: >-
        Returns detailed government trade disclosure reports including periodic
        transaction reports filed by congressional members
      operationId: get-government-trade-reports
      parameters:
        - description: Page number
          in: query
          name: page
          schema:
            type: integer
        - description: Page size
          in: query
          name: pageSize
          schema:
            type: integer
        - description: Date from
          in: query
          name: date_from
          schema:
            type: integer
            format: int64
        - description: Date to
          in: query
          name: date_to
          schema:
            type: integer
            format: int64
        - description: Updated since
          in: query
          name: updated_since
          schema:
            type: integer
            format: int64
        - description: Date
          in: query
          name: date
          schema:
            type: integer
            format: int64
        - description: Chamber
          in: query
          name: chamber
          schema:
            type: string
            enum:
              - '"House"'
              - '"Senate"'
        - description: Fields
          in: query
          name: fields
          schema:
            type: string
        - description: Search keys type
          in: query
          name: search_keys_type
          schema:
            type: string
            enum:
              - '"report_id"'
              - '"ticker"'
        - description: Search keys
          in: query
          name: search_keys
          schema:
            type: string
      responses:
        '200':
          description: Government Trade Reports
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.GovernmentTradeReportsResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    api.GovernmentTradeReportsResponse:
      description: API response containing an array of government trade report records
      properties:
        data:
          items:
            $ref: '#/components/schemas/api.SwaggerGovtTradeReport'
          type: array
      type: object
    api.ErrorResponse:
      properties:
        text:
          type: string
      type: object
    api.SwaggerGovtTradeReport:
      properties:
        amendment_number:
          example: 0
          type: integer
        disclosure_url:
          example: >-
            https://disclosurespreview.house.gov/ld/ldxmlrelease/2024/RR/123456.xml
          type: string
        filer_info:
          $ref: '#/components/schemas/api.SwaggerGovtTradeReportFilerInfo'
        id:
          example: 60a7f5e8e4b0f5a3c8e9f5c4
          type: string
        latest:
          example: true
          type: boolean
        report_date:
          example: '2024-01-09'
          type: string
        report_id:
          example: RPT-2024-5678
          type: string
        transactions:
          items:
            $ref: '#/components/schemas/api.SwaggerGovtTradeReportTransaction'
          type: array
        updated:
          example: 1704819600
          type: integer
      type: object
    api.SwaggerGovtTradeReportFilerInfo:
      properties:
        chamber:
          example: House
          type: string
        committees:
          additionalProperties:
            type: string
          type: object
        display_name:
          example: Pelosi, Nancy
          type: string
        district:
          example: '11'
          type: string
        headshot:
          example: https://example.com/headshots/pelosi.jpg
          type: string
        id:
          example: 60a7f5e8e4b0f5a3c8e9f5c3
          type: string
        leadership_positions:
          example:
            - Speaker Emerita
          items:
            type: string
          type: array
        member_id:
          example: P000197
          type: string
        member_name:
          example: Nancy Pelosi
          type: string
        party:
          example: Democrat
          type: string
        state:
          example: CA
          type: string
        status:
          example: Active
          type: string
        updated:
          example: 1704819600
          type: integer
        website:
          example: https://pelosi.house.gov
          type: string
      type: object
    api.SwaggerGovtTradeReportTransaction:
      properties:
        amendment_number:
          example: 0
          type: integer
        amount:
          example: $15,001 - $50,000
          type: string
        chamber:
          example: Senate
          type: string
        description:
          example: Common Stock
          type: string
        disclosure_url:
          example: >-
            https://disclosurespreview.house.gov/ld/ldxmlrelease/2024/RR/123456.xml
          type: string
        id:
          example: 60a7f5e8e4b0f5a3c8e9f5c5
          type: string
        notification_date:
          example: '2024-01-15'
          type: string
        ownership:
          example: Joint
          type: string
        report_date:
          example: '2024-01-09'
          type: string
        report_id:
          example: RPT-2024-5678
          type: string
        security:
          $ref: '#/components/schemas/api.SwaggerGovtTradeReportSecurity'
        transaction_date:
          example: '2024-01-05'
          type: string
        transaction_id:
          example: TXN-2024-001234
          type: string
        transaction_type:
          example: Purchase
          type: string
        updated:
          example: 1704819600
          type: integer
      type: object
    api.SwaggerGovtTradeReportSecurity:
      properties:
        name:
          example: Apple Inc. - Common Stock
          type: string
        ticker:
          example: AAPL
          type: string
        type:
          example: Stock
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: query
      name: token
      type: apiKey

````