- Description: A search method that looks for legislators by zip code. This will return data for all legislative districts in the given zip code.
- Arguments: An 5-digit integer representing a USPS zip code.
1 2 3 4 5 6 | api_key = 'XXXXXXXXXXXX'; echo '<pre>'; print_r( $sf->legislatorZipCode( 20817 ) ); echo '</pre>'; ?> |
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | 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] => 8 [title] => Rep [eventful_id] => P0-001-000016655-4 [in_office] => 1 [state] => MD [crp_id] => N00013820 [official_rss] => [party] => D [email] => [votesmart_id] => 6098 [website] => http://vanhollen.house.gov [fax] => 202-225-0375 [govtrack_id] => 400415 [firstname] => Christopher [middlename] => [lastname] => Van Hollen [congress_office] => 1707 Longworth House Office Building [phone] => 202-225-5341 [webform] => http://vanhollen.house.gov/HoR/MD08/Contact+Information/Web+Contact/Contact+Form.htm [youtube_url] => [nickname] => Chris [bioguide_id] => V000128 [fec_id] => H2MD08126 [gender] => M [senate_class] => [name_suffix] => Jr. [twitter_id] => [sunlight_old_id] => fakeopenID406 [congresspedia_url] => http://www.opencongress.org/wiki/Christopher_Van_Hollen ) ) [2] => 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 ) ) ) |



