List Carrier Services
Use this endpoint to return a list of available services and their attributes for a specific carrier_id.
Requirements
- You will need a
carrier_idfor this request.
To retreive carrier IDs, use the List Carriers endpoint.
Example Request & Response
GET /v1/carriers/:carrier_id/services
123GET /v1/carriers/se-123890/services HTTP/1.1Host: api.shipengine.comAPI-Key: __YOUR_API_KEY_HERE__
Example Response
{"services": [{"carrier_id": "se-123890","carrier_code": "stamps_com","service_code": "usps_first_class_mail","name": "USPS First Class Mail","domestic": true,"international": false,"is_multi_package_supported": false},{"carrier_id": "se-123890","carrier_code": "stamps_com","service_code": "usps_media_mail","name": "USPS Media Mail","domestic": true,"international": false,"is_multi_package_supported": false},{"carrier_id": "se-123890","carrier_code": "stamps_com","service_code": "usps_parcel_select","name": "USPS Parcel Select Ground","domestic": true,"international": false,"is_multi_package_supported": false},{"carrier_id": "se-123890","carrier_code": "stamps_com","service_code": "usps_priority_mail","name": "USPS Priority Mail","domestic": true,"international": false,"is_multi_package_supported": false},{"carrier_id": "se-123890","carrier_code": "stamps_com","service_code": "usps_priority_mail_express","name": "USPS Priority Mail Express","domestic": true,"international": false,"is_multi_package_supported": false},{"carrier_id": "se-123890","carrier_code": "stamps_com","service_code": "usps_first_class_mail_international","name": "USPS First Class Mail Intl","domestic": false,"international": true,"is_multi_package_supported": false},{"carrier_id": "se-123890","carrier_code": "stamps_com","service_code": "usps_priority_mail_international","name": "USPS Priority Mail Intl","domestic": false,"international": true,"is_multi_package_supported": false},{"carrier_id": "se-123890","carrier_code": "stamps_com","service_code": "usps_priority_mail_express_international","name": "USPS Priority Mail Express Intl","domestic": false,"international": true,"is_multi_package_supported": false}]}