action fec_get_committee_committee_id_reports { label: "get_committee_committee_id_reports" description: "\nEach report represents the summary information from Form 3, Form 3X and Form 3P.\nThese reports have key statistics that illuminate the financial status of a given committee.\nThings like cash on hand, debts owed by committee, total receipts, and total disbursements\nare especially helpful for understanding a committee's financial dealings.\n\nBy default, this endpoint includes both amended and final versions of each report. To restrict\nto only the final versions of each report, use `is_amended=false`; to retrieve only reports that\nhave been amended, use `is_amended=true`.\n\nSeveral different reporting structures exist, depending on the type of organization that\nsubmits financial information. To see an example of these reporting requirements,\nlook at the summary and detailed summary pages of Form 3, Form 3X, and Form 3P.\n\nDISCLAIMER: The field labels contained within this resource are subject to change. We are attempting to succinctly\nlabel these fields while conveying clear meaning to ensure accessibility for all users.\n" provider: fec method: GET path: "/committee/{committee_id}/reports/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } beginning_image_number: { type: "array" items: { type: "string" } } candidate_id: { type: "string" } committee_id: { type: "string" } cycle: { type: "array" items: { type: "integer" format: "int32" } } is_amended: { type: "boolean" } max_cash_on_hand_end_period_amount: { type: "string" } max_debts_owed_expenditures: { type: "string" } max_disbursements_amount: { type: "string" } max_independent_expenditures: { type: "string" } max_party_coordinated_expenditures: { type: "string" } max_receipts_amount: { type: "string" } max_total_contributions: { type: "string" } min_cash_on_hand_end_period_amount: { type: "string" } min_debts_owed_amount: { type: "string" } min_disbursements_amount: { type: "string" } min_independent_expenditures: { type: "string" } min_party_coordinated_expenditures: { type: "string" } min_receipts_amount: { type: "string" } min_total_contributions: { type: "string" } page: { type: "integer" format: "int32" } per_page: { type: "integer" format: "int32" } report_type: { type: "array" items: { type: "string" } } sort: { type: "array" items: { type: "string" } } sort_hide_null: { type: "boolean" } sort_null_only: { type: "boolean" } sort_nulls_last: { type: "boolean" } type: { type: "array" items: { type: "string" } } year: { type: "array" items: { type: "integer" format: "int32" } } } required: ["api_key", "committee_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }