World Shipping Pricing

Get the cheaper price of your shipping in 198 countries.

POST https://api.transiteo.io/v1/aishippingpricing

JSON Request Format

{
    “quote”: {
        “shipper”: {
          “country”: string,
          “postal_code”: string,
          “city”: string
        },
        “recipient”: {
          “is_a_company”: boolean,
          “country”: string,
          “postal_code”: string,
          “city”: string
        },
        “parcels”: [
          {
            “weight”: number,
            “length”: number,
            “width”: number,
            “height”: number
          }
        ]
    }
}

Request fields

"quote" / "shipper" / "country"

Fill this value with the shipper country Examples : FR Type : string Required : yes

"quote" / "shipper" / "postal_code"

Fill this value with the shipper postal code Examples : 67000 Type : string Required : yes

"quote" / "shipper" / "city"

Fill this value with the shipper city Examples : Strasbourg Type : string Required : yes

"quote" / "recipient" / "is_a_company"

Fill this value with true if the recipient is a company/pro. Examples : true or false Type : boolean Required : yes

"quote" / "recipient" / "country"

Fill this value with the recipient country Examples : FR Type : string Required : yes

"quote" / "recipient" / "postal_code"

Fill this value with the recipient postal code Examples : 67000 Type : string Required : yes

"quote" / "recipient" / "city"

Fill this value with the recipient city Examples : Strasbourg Type : string Required : yes

"quote" / "parcels" / "weight"

Fill this value with the parcel weight (in kg) Examples : 4.7 Type : number Required : yes

"quote" / "parcels" / "length"

Fill this value with the parcel length Examples : 20 Type : number Required : yes

"quote" / "parcels" / "width"

Fill this value with the parcel width Examples : 30 Type : number Required : yes

"quote" / "parcels" / "height"

Fill this value with the parcel height Examples : 15 Type : number Required : yes

JSON Response Format

{
    “amount”: number,
    “currency”: string,
    “carrier_code”: string,
    “code”: string,
    “name”: string,
    “delay”: string,
    “timestamp”: number
}

Response fields & values

"amount"

This value is the shipping price amount of your parcel (with locals taxes) Example : 39.65 Type : number

"currency"

This value is the shipping price currency of your parcel Example : EUR Type : string

"carrier_code"

This value is the carrier code of your shipment Example : dhl Type : string

"code"

This value is the code of your shipment Example : HU83 Type : string

"name"

This value is the carrier name of your shipment Example : DHL Type : string

"delay"

This value is the delay of your shipment Example : 24-48 Type : string

"timestamp"

We provide the result timestamp. Example : "1638440602271" Type : string

Last updated