A simple wrapper for the https://data.guidestar.org/ API.
Add this line to your application's Gemfile:
gem 'guidestar_search'
And then execute:
$ bundle
Or install it yourself as:
$ gem install guidestar_search
Pretty straightforward - just configure with a GuideStar API key (typically in a Rails initializer). If you're testing, you can set sandbox
to true to hit the sandbox endpoint.
GuidestarSearch.configure do |config|
config.api_key = 'yourGuideStarAPIKey'
config.sandbox = true
end
Pass accepted q
params into the query method, as defined here: https://data.guidestar.org/#guidestar_search
GuidestarSearch.query(city: 'Santa Cruz', state: 'CA')
To retrieve a specific page number of the results, pass in the optional extra param page
like this:
GuidestarSearch.query(city: 'Santa Cruz', state: 'CA', page: 3)
To retrieve a specific number of results per page, pass in the optional extra param per_page
like this:
GuidestarSearch.query(city: 'Santa Cruz', state: 'CA', per_page: 25)
The query method above returns a query object, with two methods on it:
organizations
total_num_organizations
total_num_organizations contains the total number of results across all pages. organizations returns a list of simple result objects, on which you can call methods named the same as the field names from the GuideStar Search API. Some common field names are:
organization_id
ein
organization_name
city
state
zip
mission
website
Pass a GuideStar organization id into the detail method to get details on that organization.
GuidestarSearch.detail(8867641)
The detail method above returns a detail object, with one method on it:
organization
The organization method returns a simple result object, on which you can call methods named the same as the field names from the GuideStar Detail API. Some common field names are:
organization_id
ein
organization_name
address_line1
address_line2
city
state
zip
zip4
contact_phone
contact_fax
mission
year_founded
website
If GuideStar cannot find the organization associated with the GuideStar organization id passed in, then the organization method returns an empty hash.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request