NAME WebService::Shippo - A Shippo API Perl Wrapper (coming soon) VERSION 0.0.11 (2015-11-02) SYNOPIS Shippo is a shipping API that connects you with multiple shipping providers (such as USPS, UPS, and Fedex) through one interface, and offers you great discounts on shipping rates. Don't have an account? Sign up at use strict; use WebService::Shippo; # If it hasn't already done outside of the script, you # must set your API key... Shippo->api_key( 'PASTE YOUR PRIVATE AUTH TOKEN HERE' ) unless Shippo->api_key; my $address = Shippo::Address->create( object_purpose => 'PURCHASE', name => 'John Smith', street1 => '6512 Greene Rd.', street2 => '', company => 'Initech', phone => '+1 234 346 7333', city => 'Woodridge', state => 'IL', zip => '60517', country => 'US', email => 'user@gmail.com', metadata => 'Customer ID 123456' ); print 'Success with Address 1 : ', $address All being well, you should see something like the following output: Success with Address 1 : { "city" : "Woodridge", "company" : "Initech", "country" : "US", "email" : "user@gmail.com", "ip" : null, "is_residential" : null, "messages" : [], "metadata" : "Customer ID 123456", "name" : "John Smith", "object_created" : "2015-10-16T16:14:16.296Z", "object_id" : "475bb05d72b74a08a1d44b40ac85d635", "object_owner" : "******@*********.***", "object_purpose" : "PURCHASE", "object_source" : "FULLY_ENTERED", "object_state" : "VALID", "object_updated" : "2015-10-16T16:14:16.296Z", "phone" : "0012343467333", "state" : "IL", "street1" : "6512 Greene Rd.", "street2" : "", "street_no" : "", "zip" : "60517" } DESCRIPTION FULL API DOCUMENTATION * For API documentation, go to * For API support, contact with any questions. REPOSITORY * * * AUTHOR Iain Campbell COPYRIGHT AND LICENSE This software is copyright (c) 2015 by Iain Campbell. You may distribute this software under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file.