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.
-
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. -
pivotal-tracker
DISCONTINUED. Ruby gem that provides an AR-style interface for the Pivotal Tracker API -
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
CodeRabbit: AI Code Reviews for Developers

* 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.