No commit activity in last 3 years
No release in over 3 years
A Ruby library for the Ideal Postcodes API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

~> 2.0
 Project Readme

IdealPostcodesRB

IdealPostcodesRB is a Ruby library for the Ideal-Postcodes.co.uk API.

Installation

Add this line to your application's Gemfile:

gem 'idealpostcodesrb'

Usage

Set your API Key

You can find your API Key from the Ideal Postcodes account page, then set it like so:

@client = IdealPostcodes::Client.new(api_key: "abc123")

Address

# Find an address
# Docs: https://docs.ideal-postcodes.co.uk/api#tag/Address-Search/operation/AddressAutocomplete
@client.addresses.find query: "10 drowning street"
#=> #<IdealPostcodes::Collection...

# Lookup address for a postcode
@client.addresses.lookup postcode: "sw1a 0aa"
#=> #<IdealPostcodes::Collection...

# Resolve an address
# Kind should be GBR or USA
# Address would be the ID of the Address in Ideal Postcodes
@client.addresses.resolve kind: "gbr", address: "paf_22690298"

# Retrieves an address as identified by its Unique Delivery Point Reference Number (UDPRN).
@client.addresses.udprn query: "abc123"

# Retrieves an address as identified by its UMPRN (Multiple Residence Unique ID.
@client.addresses.umprn query: "abc123"

Places

# Query places across countries
# Docs: https://docs.ideal-postcodes.co.uk/api#tag/Place-Search/operation/FindPlace
@client.places.find query: "London"
#=> #<IdealPostcodes::Collection

# Resolve a Place
@client.places.resolve place: "geonames_2643743"
#=> #<IdealPostcodes::Place id="geonames_2643743"...

Email Validation

Queries and validates a given email address.

@client.emails.validate email: "test-email@example.com"
#=> #<IdealPostcodes::Email result="deliverable"...

Phone Validation

Queries and validates a given phone number. Number should include the country code.

@client.phones.validate number: "447123123123"
#=> #<IdealPostcodes::Phone valid=true...

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/deanpcmad/idealpostcodes.

License

The gem is available as open source under the terms of the MIT License.