Use this API to integrate with the Shippo service
- Create a new customs declaration
Shippo external API. (2018-02-08)
First-time users and those looking for specific integration tutorials,
see our full API documentation and guides.
Download the API Specification yaml file
API Resources
All API URLs listed in this documentation are relative to https://api.goshippo.com/.For example, the /addresses/ resource is reachable at https://api.goshippo.com/addresses/.
Authentication
The API requires Shippo's token HTTP Authentication with your Shippo token (live or test).In order to authenticate properly, please put Authorization: ShippoToken <token> in your header. You can find your token on the Shippo API settings page.
For more information about authentication and test mode, please visit our Authentication guide.
The API is available via Secure Socket Layer (SSL) only. All requests to the Shippo API must use TLS version 1.2 or higher.
Request & Response Data
Request data is passed to the API by POSTing JSON objects with the appropriate key/value-pairs to the respective resource. The documentation for each API resource contains more details on the values accepted by a given resource.Response data also formatted as JSON object. You can specify how many results per page are to be returned. For instance, /rates/?results=25 will return up to 25 results.
REST & Disposable Objects
The Shippo API is built around REST principles. Use POST requests to create objects, GET requests to retrieve objects, and PUT requests to update objects.Only the Carrier Accounts object can be updated via PUT requests. All other objects such as Addresses, Parcels, Shipments, Rates, Transactions, Refunds, Customs Items, and Customs Declarations are disposable. This means that once you have created an object, you cannot change it. Instead, create a new one with the desired values.
API Version
This reference guide supports the Shippo API version: 2018-02-08 .
To see reference guides for older API versions, see our legacy reference guide. For more information about Shippo API versions, see our API versions guide.
A carrier parcel template represents a package used for shipping that has preset dimensions defined by a carrier. Some examples of a carrier parcel template include USPS Flat Rate Box and Fedex Small Pak. When using a carrier parcel template, the rates returned may be limited to the carrier that provides the box. You can create user parcel templates using a carrier parcel template. Shippo takes the dimensions of the carrier parcel template but you must configure the weight.
A user parcel template represents a package used for shipping that has preset dimensions and attributes defined by you. They are useful for capturing attributes of parcel-types you frequently use for shipping, allowing them to be defined once and then used for many shipments. These parcel templates can also be used for live rates.
User parcel templates can also be created using a carrier parcel template, where the dimensions will be copied from the carrier presets, but the weight can be configured by you.
A batch is a technique for creating multiple labels at once. Use the batch object to create and purchase many shipments in two API calls. After creating the batch, retrieve the batch to verify that all shipments are valid. You can add and remove shipments after you have created the batch. When all shipments are valid you can purchase the batch and retrieve all the shipping labels.
If you purchased your shipping label through Shippo, you can also get all the tracking details of your Shipment
from the Transaction object.
When using your Test token for tracking, you need to use Shippo's predefined tokens for testing different tracking statuses. You can find more information in our Tracking tutorial on how to do this, and what the payloads look like.
Webhooks are a way for Shippo to notify your application when a specific event occurs. For example, when a label is purchased or when a shipment tracking status has changed. You can use webhooks to trigger actions in your application, such as sending an email or updating a database.
Optional string used to pick a non-default API version to use. See our API version guide.
- https://api.goshippo.com/customs/declarations
- cURL
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl https://api.goshippo.com/customs/declarations/ \
-H "Authorization: ShippoToken shippo_test_3a47d23c032ca626fce863c48d0f93d63a394396"{ "next": "baseurl?page=3&results=10", "previous": "baseurl?page=1&results=10", "results": [ { … } ] }
Optional string used to pick a non-default API version to use. See our API version guide.
CustomsDeclaration details.
B13A Option details are obtained by filing a B13A Canada Export Declaration via the Canadian Export Reporting System (CERS). More information on reporting commercial exports from Canada. Allowed values available here
must be provided if and only if b13a_filing_option is provided
Represents:
the Proof of Report (POR) Number when b13a_filing_option is FILED_ELECTRONICALLY;
the Summary ID Number when b13a_filing_option is SUMMARY_REPORTING;
or the Exemption Number when b13a_filing_option is NOT_REQUIRED.
Expresses that the certify_signer has provided all information of this customs declaration truthfully.
Name of the person who created the customs declaration and is responsible for the validity of all information provided.
required if contents_type is OTHER
Explanation of the type of goods of the shipment.
Disclaimer for the shipment and customs information that have been provided.
Carrier-Specific Constraints:
| Carrier | Constraints |
|---|---|
| FedEx | Max 554 characters |
Specifies who will pay the duties for the shipment. Only accepted for FedEx shipments.
Additional exporter identification that may be required to ship in certain countries
Indicates whether the shipment's destination VAT has been collected. May be required for some destinations.
A string of up to 100 characters that can be filled with any additional information you want to attach to the object.
Type of goods of the shipment.
Allowed values available here
EEL / PFC type of the shipment. For most shipments from the US to CA, NOEEI_30_36 is applicable; for most other shipments from the US, NOEEI_30_37_a is applicable. Allowed values available here
The incoterm reference of the shipment. FCA is available for DHL Express and FedEx only. eDAP is available for DPD UK only. DAP is available for DHL Express, FedEx, and DPD UK. If expecting DAP for other carriers, please use DDU. Allowed values available here Carrier-specific restrictions are in the table below.
Carrier-Specific Constraints:
| Carrier | Constraints |
|---|---|
| FedEx | Must be one of DDP, DDU, FCA, DAP |
Indicates how the carrier should proceed in case the shipment can't be delivered. Allowed values available here
- https://api.goshippo.com/customs/declarations
- cURL
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl https://api.goshippo.com/customs/declarations/ \
-H "Authorization: ShippoToken " \
-H "Content-Type: application/json" \
-d '{
"contents_type": "MERCHANDISE",
"non_delivery_option": "RETURN",
"certify": true,
"certify_signer": "Simon Kreuz",
"incoterm": "DDU",
"items": [{
"description": "T-shirt",
"quantity": 20,
"net_weight": "5",
"mass_unit": "lb",
"value_amount": "200",
"value_currency": "USD",
"tariff_number": "",
"origin_country": "US"
}]
}'B13A Option details are obtained by filing a B13A Canada Export Declaration via the Canadian Export Reporting System (CERS). More information on reporting commercial exports from Canada. Allowed values available here
must be provided if and only if b13a_filing_option is provided
Represents:
the Proof of Report (POR) Number when b13a_filing_option is FILED_ELECTRONICALLY;
the Summary ID Number when b13a_filing_option is SUMMARY_REPORTING;
or the Exemption Number when b13a_filing_option is NOT_REQUIRED.
Expresses that the certify_signer has provided all information of this customs declaration truthfully.
Name of the person who created the customs declaration and is responsible for the validity of all information provided.
required if contents_type is OTHER
Explanation of the type of goods of the shipment.
Disclaimer for the shipment and customs information that have been provided.
Carrier-Specific Constraints:
| Carrier | Constraints |
|---|---|
| FedEx | Max 554 characters |
Specifies who will pay the duties for the shipment. Only accepted for FedEx shipments.
Additional exporter identification that may be required to ship in certain countries
Indicates whether the shipment's destination VAT has been collected. May be required for some destinations.
A string of up to 100 characters that can be filled with any additional information you want to attach to the object.
Object ID of the Importer address.
Type of goods of the shipment.
Allowed values available here
EEL / PFC type of the shipment. For most shipments from the US to CA, NOEEI_30_36 is applicable; for most other shipments from the US, NOEEI_30_37_a is applicable. Allowed values available here
The incoterm reference of the shipment. FCA is available for DHL Express and FedEx only. eDAP is available for DPD UK only. DAP is available for DHL Express, FedEx, and DPD UK. If expecting DAP for other carriers, please use DDU. Allowed values available here Carrier-specific restrictions are in the table below.
Carrier-Specific Constraints:
| Carrier | Constraints |
|---|---|
| FedEx | Must be one of DDP, DDU, FCA, DAP |
Additional invoiced charges to be shown on the Customs Declaration Commercial Invoice.
Distinct Parcel content items as Customs Items object_ids.
Indicates how the carrier should proceed in case the shipment can't be delivered. Allowed values available here
Date and time of object creation.
Indicates the validity of the enclosing object
Date and time of last object update.
{ "aes_itn": "string", "b13a_filing_option": "FILED_ELECTRONICALLY", "b13a_number": "string", "certificate": "string", "certify": true, "certify_signer": "Shawn Ippotle", "commercial_invoice": true, "contents_explanation": "T-Shirt purchase", "disclaimer": "string", "duties_payor": { "account": "2323434543", "type": "THIRD_PARTY", "address": { … } }, "exporter_identification": { "eori_number": "PL123456790ABCDE", "tax_id": { … } }, "exporter_reference": "string", "importer_reference": "string", "is_vat_collected": true, "invoice": "#123123", "license": "string", "metadata": "Order ID #123123", "notes": "string", "address_importer": "257ba08436604d2aaf069caafe7acb2a", "contents_type": "MERCHANDISE", "eel_pfc": "NOEEI_30_37_a", "incoterm": "DDP", "invoiced_charges": { "currency": "string", "total_shipping": "string", "total_taxes": "string", "total_duties": "string", "other_fees": "string" }, "items": [ "5087f181d1dc4b14b73fdbf636498886" ], "non_delivery_option": "RETURN", "object_created": "2014-07-17T01:01:08.306Z", "object_id": "e2197a54da9d470480f4f8796cc419cb", "object_owner": "shippotle@shippo.com", "object_state": "VALID", "object_updated": "2014-07-17T01:01:08.306Z", "test": true }
Optional string used to pick a non-default API version to use. See our API version guide.
- https://api.goshippo.com/customs/declarations/{CustomsDeclarationId}
- cURL
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl https://api.goshippo.com/customs/declarations/e2197a54da9d470480f4f8796cc419cb \
-H "Authorization: ShippoToken shippo_test_3a47d23c032ca626fce863c48d0f93d63a394396"B13A Option details are obtained by filing a B13A Canada Export Declaration via the Canadian Export Reporting System (CERS). More information on reporting commercial exports from Canada. Allowed values available here
must be provided if and only if b13a_filing_option is provided
Represents:
the Proof of Report (POR) Number when b13a_filing_option is FILED_ELECTRONICALLY;
the Summary ID Number when b13a_filing_option is SUMMARY_REPORTING;
or the Exemption Number when b13a_filing_option is NOT_REQUIRED.
Expresses that the certify_signer has provided all information of this customs declaration truthfully.
Name of the person who created the customs declaration and is responsible for the validity of all information provided.
required if contents_type is OTHER
Explanation of the type of goods of the shipment.
Disclaimer for the shipment and customs information that have been provided.
Carrier-Specific Constraints:
| Carrier | Constraints |
|---|---|
| FedEx | Max 554 characters |
Specifies who will pay the duties for the shipment. Only accepted for FedEx shipments.
Additional exporter identification that may be required to ship in certain countries
Indicates whether the shipment's destination VAT has been collected. May be required for some destinations.
A string of up to 100 characters that can be filled with any additional information you want to attach to the object.
Object ID of the Importer address.
Type of goods of the shipment.
Allowed values available here
EEL / PFC type of the shipment. For most shipments from the US to CA, NOEEI_30_36 is applicable; for most other shipments from the US, NOEEI_30_37_a is applicable. Allowed values available here
The incoterm reference of the shipment. FCA is available for DHL Express and FedEx only. eDAP is available for DPD UK only. DAP is available for DHL Express, FedEx, and DPD UK. If expecting DAP for other carriers, please use DDU. Allowed values available here Carrier-specific restrictions are in the table below.
Carrier-Specific Constraints:
| Carrier | Constraints |
|---|---|
| FedEx | Must be one of DDP, DDU, FCA, DAP |
Additional invoiced charges to be shown on the Customs Declaration Commercial Invoice.
Distinct Parcel content items as Customs Items object_ids.
Indicates how the carrier should proceed in case the shipment can't be delivered. Allowed values available here
Date and time of object creation.
Indicates the validity of the enclosing object
Date and time of last object update.
{ "aes_itn": "string", "b13a_filing_option": "FILED_ELECTRONICALLY", "b13a_number": "string", "certificate": "string", "certify": true, "certify_signer": "Shawn Ippotle", "commercial_invoice": true, "contents_explanation": "T-Shirt purchase", "disclaimer": "string", "duties_payor": { "account": "2323434543", "type": "THIRD_PARTY", "address": { … } }, "exporter_identification": { "eori_number": "PL123456790ABCDE", "tax_id": { … } }, "exporter_reference": "string", "importer_reference": "string", "is_vat_collected": true, "invoice": "#123123", "license": "string", "metadata": "Order ID #123123", "notes": "string", "address_importer": "257ba08436604d2aaf069caafe7acb2a", "contents_type": "MERCHANDISE", "eel_pfc": "NOEEI_30_37_a", "incoterm": "DDP", "invoiced_charges": { "currency": "string", "total_shipping": "string", "total_taxes": "string", "total_duties": "string", "other_fees": "string" }, "items": [ "5087f181d1dc4b14b73fdbf636498886" ], "non_delivery_option": "RETURN", "object_created": "2014-07-17T01:01:08.306Z", "object_id": "e2197a54da9d470480f4f8796cc419cb", "object_owner": "shippotle@shippo.com", "object_state": "VALID", "object_updated": "2014-07-17T01:01:08.306Z", "test": true }
A manifest is a single-page document with a barcode that carriers can scan to accept all packages into transit without the need to scan each item individually. They are close-outs of shipping labels of a certain day. Some carriers require manifests to process the shipments.
An order is a request from a customer to purchase goods from a merchant. Use the orders object to load orders from your system to the Shippo dashboard. You can use the orders object to create, retrieve, list, and manage orders programmatically. You can also retrieve shipping rates, purchase labels, and track shipments for each order.
Rates at checkout is a tool for merchants to display up-to-date shipping estimates based on what's in their customers cart and where they’re shipping to. Merchants set up curated shipping options for customers in the checkout flow based on data in the shopping cart. The request must include the to address and item information. Optional fields are the from address and package information. If the optional fields are not included, the service will use the default address and/or package configured for rates at checkout. The response is a list of shipping options based on the Service Group configuration. (see Service Group configuration for details).
Shippo Accounts are used by Shippo Platform Accounts to create and manage Managed Shippo Accounts. Managed Shippo Accounts are headless accounts that represent your customers. They are opaque to your end customers, meaning customers do not need to create their own Shippo login or have a billing relationship with Shippo. They can be used by marketplaces, e-commerce platforms, and third-party logistics providers who want to offer, seamless, built-in shipping functionality to their customers. See our guide for more details.
| Token | Carrier name |
|---|---|
| airterra | Airterra |
| apc_postal | APC Postal |
| apg | APG |
| aramex | Aramex |
| asendia_us | Asendia US |
| australia_post | Australia Post (also used for Startrack) |
| axlehire | Jitsu |
| better_trucks | BetterTrucks |
| borderguru | BorderGuru |
| boxberry | Boxberry |
| bring | Bring (also used for Posten Norge) |
| canada_post | Canada Post |
| cdl | CDL |
| chronopost | Chronopost |
| collect_plus | CollectPlus |
| correios_br | CorreiosBR |
| correos_espana | Correos España |
| colissimo | Colissimo |
| deutsche_post | Deutsche Post |
| dhl_benelux | DHL Benelux |
| dhl_ecommerce | DHL eCommerce |
| dhl_express | DHL Express |
| dhl_germany_c2c | DHL Germany C2C |
| dhl_germany | DHL Germany |
| dpd_de | DPD GERMANY |
| dpd_uk | DPD UK |
| estafeta | Estafeta |
| fastway_australia | Aramex |
| fedex | FedEx |
| globegistics | Globegistics (now Asendia) |
| gls_us | GLS US |
| gophr | Gophr |
| gso | GSO |
| hermes_germany_b2c | Hermes Germany B2C |
| hermes_uk | Evri UK |
| hongkong_post | Hongkong Post |
| lasership | LaserShip |
| lso | LSO |
| mondial_relay | Mondial Relay |
| new_zealand_post | New Zealand Post (also used for Pace and CourierPost) |
| nippon_express | Nippon Express |
| ontrac | OnTrac |
| parcelforce | Parcelforce |
| passport | Passport |
| pcf | PCF |
| poste_italiane | Poste Italiane |
| posti | Posti |
| purolator | Purolator |
| royal_mail | Royal Mail |
| royal_mail_sf | Royal Mail Storefeeder |
| rr_donnelley | ePost Global |
| russian_post | Russian Post |
| skypostal | SkyPostal |
| stuart | Stuart |
| swyft | Swyft |
| uds | UDS (United Delivery Service) |
| ups | UPS |
| usps | USPS |
| veho | Veho |
Validation result codes returned by the address validation service.
Allowed values:
verification_errorunknown_streetcomponent_mismatch_errormultiple_matchsub_premise_number_invalidsub_premise_number_missingpremise_number_invalidpremise_number_missingbox_number_invalidbox_number_missingpmb_number_missingpostal_code_changeadministrative_area_changelocality_changedependent_locality_changestreet_name_changestreet_type_changestreet_directional_changesub_premise_type_changesub_premise_number_changedouble_dependent_locality_changesubadministrative_area_changesubnational_area_changepo_box_changepremise_type_changehouse_number_changeorganization_changeextraneous_informationusps_door_inaccessibleadministrative_area_partialcity_partialstreet_partialbuilding_partialsubpremise_partialadministrative_area_fullcity_fullthoroughfare_fullpremises_fullsubpremise_fullgeocoded_streetgeocoded_neighborhoodgeocoded_communitygeocoded_stategeocoded_rooftopgeocoded_interpolated_rooftopinvalid_postal_codepostal_code_not_foundempty_requestservice_errorstreet_detail_missingInvalid City/State/ZipDefault MatchUnknown StreetAddress Not FoundNon-Deliverable ZIP4Multiple ResponsesInvalid Dual AddressInvalid StateInvalid CityAmbiguous Address
B13A Option details are obtained by filing a B13A Canada Export Declaration via the Canadian Export Reporting System (CERS). More information on reporting commercial exports from Canada.
Allowed values:
FILED_ELECTRONICALLYSUMMARY_REPORTINGNOT_REQUIRED