action fec_get_names_audit_committees { label: "get_names_audit_committees" description: "\nSearch for candidates or committees by name. If you're looking for information on a\nparticular person or group, using a name to find the `candidate_id` or `committee_id` on\nthis endpoint can be a helpful first step.\n" provider: fec method: GET path: "/names/audit_committees/" encoding: json input: { type: "object" properties: { api_key: { type: "string" } q: { type: "array" items: { type: "string" } } } required: ["api_key", "q"] additionalProperties: false } output: { type: "object" additionalProperties: true } }