Description
http://corelogic.com/ ruby API wrapper.
Corelogic alternatives and similar gems
Based on the "Third-party APIs" category.
Alternatively, view Corelogic alternatives based on common mentions on social networks and blogs.
-
instagram-ruby-gem
The official gem for the Instagram API -
twilio-ruby
A Ruby gem for communicating with the Twilio API and generating TwiML -
Slack Notifier
A simple wrapper for posting to slack channels -
tweetstream
A simple EventMachine-based library for consuming Twitter's Streaming API. -
fb_graph
This gem doesn't support FB Graph API v2.0+. Please use fb_graph2 gem instead. -
ruby-gmail
A Rubyesque interface to Gmail. Connect to Gmail via IMAP and manipulate emails and labels. Send email with your Gmail account via SMTP. Includes full support for parsing and generating MIME messages. -
databasedotcom
Ruby client for the Salesforce's Database.com and Chatter APIs. -
telegram-bot
Ruby gem for building Telegram Bot with optional Rails integration -
pivotal-tracker
Ruby gem that provides an AR-style interface for the Pivotal Tracker API -
hipchat-rb
HipChat HTTP API Wrapper in Ruby with Capistrano hooks -
itunes_store_transporter
Upload and manage your assets in the iTunes Store using the iTunes Store’s Transporter (iTMSTransporter). -
pivotal-tracker-api
This is a Ruby Gem that can be used to communicate with the Pivotal Tracker API v5 -
Bearer Agent for Ruby
This gem is a Ruby Agent to monitor any API using Bearer.sh -
AW Datapipe
Unofficial ruby wrapper for the AWS SDK Data Pipeline API. -
Meaning Cloud API's wrapper (gem)
Meaning Cloud API's wrapper (gem)
Build time-series-based applications quickly and at scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Corelogic or a related project?
README
Corelogic
CoreLogic API wrapper.
https://developer.corelogic.com/property-api/apis
Installation
Add this line to your application's Gemfile:
gem 'corelogic-ruby'
And then execute:
$ bundle
Or install it yourself as:
$ gem install corelogic-ruby
Configuring Corelogic
Corelogic.configure(consumer_key: 'your_client_id', consumer_secret: 'your_client_secret')
Or alternatively:
Corelogic.configure do |c|
c.consumer_key = 'your_client_id'
c.consumer_secret = 'your_client_secret'
end
Usage
Property Search
Search the CoreLogic database for a property based on the input address and returns a unique CoreLogic PropertyID for use in subsequent API calls for other CoreLogic Property Data. Requires address and either zip5 or city and state. For example:
result = Corelogic::Property.search(zip5: 'target_zip', address: 'target_address')
If the properties are found, the result
will contain an array of Corelogic::Property
objects.
Otherwise, if nothing is found, search returns Corelogic::Error::NotFound: No records returned from search
Property data
Get Property data by CoreLogic PropertyID. For example:
property = Corelogic::Property.new(corelogicPropertyId: 'someCorelogicPropertyId')
Property Ownership
Get detailed property ownership data based on an input CoreLogic PropertyID.
property.ownership
=> #<Corelogic::Property::Ownership:0x007fe422132460 ...>
Following methods are provided for an Corelogic::Property
instance.
#ownership
#building
#tax_assessment
#site
#location
#owner_transfer
#last_market_sale
#prior_sale
#load_details
Credits
Sponsored by JetRockets.
License
The gem is available as open source under the terms of the MIT License.
*Note that all licence references and agreements mentioned in the Corelogic README section above
are relevant to that project's source code only.