Order API Documentation

Create Shipping Order

Endpoint

POST https://www.shippinglabels.shop/v2/

Request Parameters

Headers

Content-Typeapplication/json
KEYRegister and log in to get
SERVIEUSPS
CODEUSPS-93-GP

JSON Body Structure

FieldTypeRequiredDescription
orderidstringYesUnique order identifier
weightstringYesUnique order weight
from object: Sender information
from.namestringYesSender's full name
from.mobilePhonestringYesSender's contact number
from.detailAddressstringYesStreet address
from.streetstringYesStreet name
from.statestringYesState abbreviation
from.citystringYesCity name
from.zipCodestringYesPostal code
from.countryCodestringYes2-letter country code
from.ischeckintNo1 or 0 default 0
to object: Recipient information
to.namestringYesRecipient's full name
to.mobilePhonestringYesRecipient's contact number
to.detailAddressstringYesStreet address
to.streetstringYesStreet name
to.statestringYesState abbreviation
to.citystringYesCity name
to.zipCodestringYesPostal code
to.countryCodestringYes2-letter country code
package array: Package details
package[].lengthstringYesPackage length in cm
package[].widthstringYesPackage width in cm
package[].heightstringYesPackage height in cm
package[].weightstringYesPackage weight in kg

Request Example

{
  "orderid": "20250000test",
  "weight": "1",
  "remake1": "xxx",
  "remake2": "xxx",
  "from": {
    "name": "Oliver",
    "mobilePhone": "1234567890",
    "detailAddress": "xx address",
    "street": "xx street",
    "state": "TX",
    "city": "Houston",
    "zipCode": "00000",
    "countryCode": "US"
  },
  "to": {
    "name": "Andy",
    "mobilePhone": "1234567890",
    "detailAddress": "xx address",
    "street": "xx street",
    "state": "TX",
    "city": "Houston",
    "zipCode": "00000",
    "countryCode": "US"
  },
  "package": [{
    "lenth": "10",
    "width": "10",
    "height": "10",
    "weight": "10"
  }]
}

Response

Success (200 Created)

{
  "code": 200,
  "data": "",
  "file": "a.pdf",
  "num": "93xxx",
  "fee":10,
  "msg": ""
}

Rate Limits

Order refund

Endpoint

POST https://www.shippinglabels.shop/v2/cancel

Request Parameters

Headers

Content-Typeapplication/json
KEYRegister and log in to get

JSON Body Structure

FieldTypeRequiredDescription
orderidarrayYesUnique order identifier

Request Example

{
  "orderid": ["20250000test","20250000test"],
}

Response

Success (200 Created)

{
  "code": 200,
  "data": "",
  "msg": "Application successful"
}

Rate Limits



Scanform

Endpoint

POST https://www.shippinglabels.shop/v2/scanform

Request Parameters

Headers

Content-Typeapplication/json
KEYRegister and log in to get
SERVIEUSPS
CODEUSPS-93-GP

JSON Body Structure

FieldTypeRequiredDescription
trackarrayYes
from object: Sender information
from.namestringYesSender's full name
from.mobilePhonestringYesSender's contact number
from.detailAddressstringYesStreet address
from.streetstringYesStreet name
from.statestringYesState abbreviation
from.citystringYesCity name
from.zipCodestringYesPostal code
from.countryCodestringYes2-letter country code

Request Example

{
  "track": ["92001xxxx","92055xxxx"],
  "from": {
    "name": "Oliver",
    "mobilePhone": "1234567890",
    "detailAddress": "xx address",
    "street": "xx street",
    "state": "TX",
    "city": "Houston",
    "zipCode": "00000",
    "countryCode": "US"
  },
}

Response

Success (200 Created)

{
  "code": 200,
  "data": {"pdf":"http://aaa.pdf"},
  "msg": "successful"
}

Rate Limits