- Description: Retrieves data regarding legislators matching certain criteria.
- Arguments: An array containing key/value pairs. Possible keys are: title, firstname, middlename, lastname, name_suffix, nickname, party, state, district, in_office, gender, phone, fax, website, webform, email, congress_office, bioguide_id, votesmart_id, fec_id, govtrack_id, crp_id, eventful_id, sunlight_old_id, congresspedia_id, twitter_id, youtube_url
- Notes: To pass more than one value for a given key, pass an array. Example: array( ‘firstname’ => array(‘John’, ‘Hillary’) );
1 2 3 4 5 6 |
Result:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | stdClass Object ( [0] => stdClass Object ( [legislator] => stdClass Object ( [district] => Junior Seat [title] => Sen [eventful_id] => P0-001-000016194-8 [in_office] => 1 [state] => MD [crp_id] => N00001955 [official_rss] => http://cardin.senate.gov/ [party] => D [email] => [votesmart_id] => 26888 [website] => http://cardin.senate.gov/ [fax] => 202-224-1651 [govtrack_id] => 400064 [firstname] => Benjamin [middlename] => L. [lastname] => Cardin [congress_office] => 509 Hart Senate Office Building [phone] => 202-224-4524 [webform] => http://cardin.senate.gov/contact/email.cfm [youtube_url] => http://www.youtube.com/SenatorCardin [nickname] => Ben [bioguide_id] => C000141 [fec_id] => H6MD03177 [gender] => M [senate_class] => I [name_suffix] => [twitter_id] => [sunlight_old_id] => fakeopenID452 [congresspedia_url] => http://www.opencongress.org/wiki/Benjamin_Cardin ) ) [1] => stdClass Object ( [legislator] => stdClass Object ( [district] => Senior Seat [title] => Sen [eventful_id] => P0-001-000016100-9 [in_office] => 1 [state] => MD [crp_id] => N00001945 [official_rss] => [party] => D [email] => [votesmart_id] => 53304 [website] => http://mikulski.senate.gov/ [fax] => 202-224-8858 [govtrack_id] => 300073 [firstname] => Barbara [middlename] => A. [lastname] => Mikulski [congress_office] => 503 Hart Senate Office Building [phone] => 202-224-4654 [webform] => http://mikulski.senate.gov/Contact/contact.cfm [youtube_url] => [nickname] => [bioguide_id] => M000702 [fec_id] => S6MD00140 [gender] => F [senate_class] => III [name_suffix] => [twitter_id] => [sunlight_old_id] => fakeopenID505 [congresspedia_url] => http://www.opencongress.org/wiki/Barbara_Mikulski ) ) ) |



