OpenSecretsMember::memberTravel()

  • Description: A method to retrieve data about Congress members privately financed travel.
  • Arguments: Requires unique member_id that represents the candidate ID (cid) as provided by OpenSecrets. The OpenSecrets API is documented here along with sources for some obscure data. Additionally, it takes an optional 4-digit calendar year for election cycle.
  • Special Note: The OpenSecrets API is different from the Sunlight Labs API. Though they share some of the same functionality for the purposes of this library, it is important to set the proper API endpoint and secure an OpenSecrets API Key. Also, be aware of rate limits and develop accordingly.
1
2
3
4
5
6
7
8
api_key = 'XXXXXXXXXXXX';
$os->request_url = 'http://www.opensecrets.org/api/';
$os->rate_limit = 200;

echo '<pre>';
print_r( $os-&gt;memberTravel( 'N00000019', '2007' ) );
echo '</pre>';
?&gt;

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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
stdClass Object
(
* Closing connection #0
    [@attributes] =&gt; stdClass Object
        (
            [member_name] =&gt; Clinton, Hillary
            [record_count] =&gt; 7
            [cid] =&gt; N00000019
            [year] =&gt; 2007
            [origin] =&gt; Center for Responsive Politics
            [source] =&gt; http://opensecrets.org/travel/search_results.php?id=N00000019
            [last_updated] =&gt; 5/16/08
        )

    [trip] =&gt; Array
        (
            [0] =&gt; stdClass Object
                (
                    [@attributes] =&gt; stdClass Object
                        (
                            [traveler] =&gt; Danielle E Kline
                            [start_date] =&gt; 01/16/2007
                            [end_date] =&gt; 01/18/2007
                            [destination] =&gt; New York, New York
                            [sponsor] =&gt; Assn of Performing Arts Presenters
                            [purpose] =&gt; To speak at annual Members conference about why local, state, and federal governments should support the arts.
                            [cost] =&gt; 500.00
                            [guests] =&gt;
                            [relationship] =&gt;
                        )

                )

            [1] =&gt; stdClass Object
                (
                    [@attributes] =&gt; stdClass Object
                        (
                            [traveler] =&gt; Andrew Shapiro
                            [start_date] =&gt; 04/23/2007
                            [end_date] =&gt; 04/23/2007
                            [destination] =&gt; Philadelphia, Pennsylvania
                            [sponsor] =&gt; University of Pennsylvania
                            [purpose] =&gt; Participation in Fox Leadership Forum, University of Pennsylvania
                            [cost] =&gt; 214.70
                            [guests] =&gt;
                            [relationship] =&gt;
                        )

                )

            [2] =&gt; stdClass Object
                (
                    [@attributes] =&gt; stdClass Object
                        (
                            [traveler] =&gt; Tamera S. Luzzatto
                            [start_date] =&gt; 06/04/2007
                            [end_date] =&gt; 06/05/2007
                            [destination] =&gt; New York, New York
                            [sponsor] =&gt; Wildlife Conservation Society
                            [purpose] =&gt; To participate in a field visit to New York for Congressional chiefs of staff and learn about the research and environmental-related work of the sponsor, the non-profit WCS, and to meet with other institutions of New York including New York City's Ma
                            [cost] =&gt; 1274.63
                            [guests] =&gt;
                            [relationship] =&gt;
                        )

                )

            [3] =&gt; stdClass Object
                (
                    [@attributes] =&gt; stdClass Object
                        (
                            [traveler] =&gt; Huma Abodin
                            [start_date] =&gt; 07/23/2007
                            [end_date] =&gt; 07/24/2007
                            [destination] =&gt; Denver, Colorado
                            [sponsor] =&gt; Democratic Leadership Council
                            [purpose] =&gt; In conjunction with the Senator's keynote speech at the DLC convention
                            [cost] =&gt; 1133.00
                            [guests] =&gt;
                            [relationship] =&gt;
                        )

                )

            [4] =&gt; stdClass Object
                (
                    [@attributes] =&gt; stdClass Object
                        (
                            [traveler] =&gt; Mildred Otero
                            [start_date] =&gt; 07/23/2007
                            [end_date] =&gt; 07/24/2007
                            [destination] =&gt; Miami, Florida
                            [sponsor] =&gt; National Council of La Raza
                            [purpose] =&gt; Speak on panel regarding Sen Clinton's leadership on the importance of the Even Start program and other early childhood literacy programs for Latino children and impact of current budget cuts to the program for NY and the country
                            [cost] =&gt; 579.00
                            [guests] =&gt;
                            [relationship] =&gt;
                        )

                )

            [5] =&gt; stdClass Object
                (
                    [@attributes] =&gt; stdClass Object
                        (
                            [traveler] =&gt; Tamera Luzzatto
                            [start_date] =&gt; 09/28/2007
                            [end_date] =&gt; 09/29/2007
                            [destination] =&gt; Philadelphia, Pennsylvania
                            [sponsor] =&gt; Multiple Sponsors
                            [purpose] =&gt; Senate Bipartisan Chief of Staff Retreat
                            [cost] =&gt; 896.00
                            [guests] =&gt;
                            [relationship] =&gt;
                        )

                )

            [6] =&gt; stdClass Object
                (
                    [@attributes] =&gt; stdClass Object
                        (
                            [traveler] =&gt; Andrew J. Shapiro
                            [start_date] =&gt; 10/04/2007
                            [end_date] =&gt; 10/07/2007
                            [destination] =&gt; Jacksonville, Florida
                            [sponsor] =&gt; Howard Gilman Foundation
                            [purpose] =&gt; Participate in Foreign Policy Leaders conference
                            [cost] =&gt; 1028.80
                            [guests] =&gt;
                            [relationship] =&gt;
                        )

                )

        )

)