Skip to content

Instantly share code, notes, and snippets.

@joncalhoun
Created October 1, 2012 09:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joncalhoun/3810510 to your computer and use it in GitHub Desktop.
Save joncalhoun/3810510 to your computer and use it in GitHub Desktop.
Verify address with EasyPost and Ruby
require "easypost"
Easypost.api_key = "ek_0HbTD15HeT6RFTwCKoUQ7rrB2NzMZ"
Easypost::Address.verify(
:street1 => "101 California St",
:street2 => "Suite 1290",
:city => "San Francisco",
:state => "CA",
:zip => "94111"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment