action fec_get_committee_committee_id_candidates { label: "get_committee_committee_id_candidates" description: "\nThis endpoint is useful for finding detailed information about a particular candidate. Use the\n`candidate_id` to find the most recent information about that candidate.\n" provider: fec method: GET path: "/committee/{committee_id}/candidates/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } candidate_status: { type: "array" items: { type: "string" enum: ["", "C", "F", "N", "P"] } } committee_id: { type: "string" } cycle: { type: "array" items: { type: "integer" format: "int32" } } district: { type: "array" items: { type: "string" } } election_year: { type: "array" items: { type: "integer" format: "int32" } } federal_funds_flag: { type: "boolean" } has_raised_funds: { type: "boolean" } incumbent_challenge: { type: "array" items: { type: "string" enum: ["", "I", "C", "O"] } } name: { type: "array" items: { type: "string" } } office: { type: "array" items: { type: "string" enum: ["", "H", "S", "P"] } } page: { type: "integer" format: "int32" } party: { type: "array" items: { type: "string" } } per_page: { type: "integer" format: "int32" } sort: { type: "string" } sort_hide_null: { type: "boolean" } sort_null_only: { type: "boolean" } sort_nulls_last: { type: "boolean" } state: { type: "array" items: { type: "string" } } year: { type: "string" } } required: ["api_key", "committee_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }