curl --request GET \
--url https://api.quivo.co/shipments/{bookedShipmentId}import requests
url = "https://api.quivo.co/shipments/{bookedShipmentId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/shipments/{bookedShipmentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.quivo.co/shipments/{bookedShipmentId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.quivo.co/shipments/{bookedShipmentId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.quivo.co/shipments/{bookedShipmentId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/shipments/{bookedShipmentId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"sellerId": 123,
"shippingServiceId": 123,
"request": {
"shipTo": {
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"street2": "<string>",
"latitude": 123,
"longitude": 123
},
"shipFrom": {
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"street2": "<string>",
"latitude": 123,
"longitude": 123
},
"reference": "<string>",
"grossWeightKg": 123,
"lengthM": 123,
"widthM": 123,
"heightM": 123,
"totalWeight": 123,
"totalVolume": 123,
"shipmentDate": "2023-11-07T05:31:56Z",
"invoiceNumber": "<string>",
"invoiceDate": "2023-11-07T05:31:56Z",
"includeReturnLabel": true,
"trackingEnabled": true,
"userIdentifier": "<string>",
"cashOnDeliveryAmount": 123,
"cashOnDeliveryCurrency": {
"currencyCode": "<string>",
"defaultFractionDigits": 123,
"numericCode": 123,
"symbol": "<string>",
"numericCodeAsString": "<string>",
"displayName": "<string>"
},
"customsPositions": [
{
"currency": {
"currencyCode": "<string>",
"defaultFractionDigits": 123,
"numericCode": 123,
"symbol": "<string>",
"numericCodeAsString": "<string>",
"displayName": "<string>"
},
"quantity": 123,
"origin": "AF",
"tariff": "<string>",
"warehouseSku": "<string>",
"contentDescription": "<string>",
"unNumber": "<string>",
"description": "<string>",
"pieceNetCustomsValue": 123,
"pieceNetWeightKg": 123
}
],
"transportInsuranceAmount": 123,
"termsOfTrade": "DAP",
"additionalParcels": [
{
"weight": 1,
"length": 123,
"width": 123,
"height": 123,
"reference": "<string>"
}
],
"orderReference": "<string>"
},
"documents": [
{
"shipmentDocumentId": 123,
"type": "LABEL"
}
],
"trackingDetails": [
{
"status": "<string>",
"created": "2023-11-07T05:31:56Z",
"message": "<string>",
"rawTag": "<string>"
}
],
"id": 123,
"created": "2023-11-07T05:31:56Z",
"requestId": "<string>",
"trackingNumber": "<string>",
"additionalTrackingNumbers": [
{
"trackingNumber": "<string>",
"reference": "<string>"
}
],
"returnTrackingNumber": "<string>",
"additionalReturnTrackingNumbers": [
{
"trackingNumber": "<string>",
"reference": "<string>"
}
],
"shipmentIdentifier": "<string>",
"cancelledAt": "2023-11-07T05:31:56Z",
"carrierCancelledAt": "2023-11-07T05:31:56Z",
"shipTo": {
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"street2": "<string>",
"latitude": 123,
"longitude": 123
},
"shipFrom": {
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"street2": "<string>",
"latitude": 123,
"longitude": 123
},
"parcelWeight": 123,
"parcelReference": "<string>",
"piiDataRemoved": true,
"contentDescription": "<string>",
"trackingLink": "<string>",
"returnTrackingLink": "<string>",
"carrierSlug": "<string>",
"carrierName": "<string>",
"direction": "<string>"
}Get shipment
Get details for a booked shipment by its ID.
curl --request GET \
--url https://api.quivo.co/shipments/{bookedShipmentId}import requests
url = "https://api.quivo.co/shipments/{bookedShipmentId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/shipments/{bookedShipmentId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.quivo.co/shipments/{bookedShipmentId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.quivo.co/shipments/{bookedShipmentId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.quivo.co/shipments/{bookedShipmentId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/shipments/{bookedShipmentId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"sellerId": 123,
"shippingServiceId": 123,
"request": {
"shipTo": {
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"street2": "<string>",
"latitude": 123,
"longitude": 123
},
"shipFrom": {
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"street2": "<string>",
"latitude": 123,
"longitude": 123
},
"reference": "<string>",
"grossWeightKg": 123,
"lengthM": 123,
"widthM": 123,
"heightM": 123,
"totalWeight": 123,
"totalVolume": 123,
"shipmentDate": "2023-11-07T05:31:56Z",
"invoiceNumber": "<string>",
"invoiceDate": "2023-11-07T05:31:56Z",
"includeReturnLabel": true,
"trackingEnabled": true,
"userIdentifier": "<string>",
"cashOnDeliveryAmount": 123,
"cashOnDeliveryCurrency": {
"currencyCode": "<string>",
"defaultFractionDigits": 123,
"numericCode": 123,
"symbol": "<string>",
"numericCodeAsString": "<string>",
"displayName": "<string>"
},
"customsPositions": [
{
"currency": {
"currencyCode": "<string>",
"defaultFractionDigits": 123,
"numericCode": 123,
"symbol": "<string>",
"numericCodeAsString": "<string>",
"displayName": "<string>"
},
"quantity": 123,
"origin": "AF",
"tariff": "<string>",
"warehouseSku": "<string>",
"contentDescription": "<string>",
"unNumber": "<string>",
"description": "<string>",
"pieceNetCustomsValue": 123,
"pieceNetWeightKg": 123
}
],
"transportInsuranceAmount": 123,
"termsOfTrade": "DAP",
"additionalParcels": [
{
"weight": 1,
"length": 123,
"width": 123,
"height": 123,
"reference": "<string>"
}
],
"orderReference": "<string>"
},
"documents": [
{
"shipmentDocumentId": 123,
"type": "LABEL"
}
],
"trackingDetails": [
{
"status": "<string>",
"created": "2023-11-07T05:31:56Z",
"message": "<string>",
"rawTag": "<string>"
}
],
"id": 123,
"created": "2023-11-07T05:31:56Z",
"requestId": "<string>",
"trackingNumber": "<string>",
"additionalTrackingNumbers": [
{
"trackingNumber": "<string>",
"reference": "<string>"
}
],
"returnTrackingNumber": "<string>",
"additionalReturnTrackingNumbers": [
{
"trackingNumber": "<string>",
"reference": "<string>"
}
],
"shipmentIdentifier": "<string>",
"cancelledAt": "2023-11-07T05:31:56Z",
"carrierCancelledAt": "2023-11-07T05:31:56Z",
"shipTo": {
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"street2": "<string>",
"latitude": 123,
"longitude": 123
},
"shipFrom": {
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"city": "<string>",
"state": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"street2": "<string>",
"latitude": 123,
"longitude": 123
},
"parcelWeight": 123,
"parcelReference": "<string>",
"piiDataRemoved": true,
"contentDescription": "<string>",
"trackingLink": "<string>",
"returnTrackingLink": "<string>",
"carrierSlug": "<string>",
"carrierName": "<string>",
"direction": "<string>"
}Path Parameters
The unique identifier for a booked shipment.
Response
Returns shipment details including tracking information, label URLs, and current status.
Complete booked shipment information with all details. Contains shipment identifiers, addresses, dimensions, weight, carrier information, tracking details, and status.
The unique identifier for the seller
The unique identifier for the shippingservice
Response object containing shippingorder details
Show child attributes
Show child attributes
Array of document items
Show child attributes
Show child attributes
Tracking information or tracking enabled status
Show child attributes
Show child attributes
The unique identifier for the id
Timestamp when the item was created
The unique identifier for the request
Tracking information or tracking enabled status
Tracking information or tracking enabled status
Show child attributes
Show child attributes
Tracking information or tracking enabled status
Tracking information or tracking enabled status
Show child attributes
Show child attributes
The unique identifier for the shipmententifier
The cancelled at timestamp
Carrier identifier or information
The
Show child attributes
Show child attributes
The
Show child attributes
Show child attributes
Weight value
Reference number or identifier for the parcel
Boolean flag indicating pii data removed
Description text
Tracking information or tracking enabled status
Tracking information or tracking enabled status
Carrier identifier or information
The name of the carrier
The direction value