curl --request GET \
--url https://api.quivo.co/transports/{transportId}import requests
url = "https://api.quivo.co/transports/{transportId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/transports/{transportId}', 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/transports/{transportId}",
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/transports/{transportId}"
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/transports/{transportId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/transports/{transportId}")
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{
"shipTo": {
"city": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"state": "<string>",
"street2": "<string>"
},
"sellerId": 123,
"shipFrom": {
"city": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"state": "<string>",
"street2": "<string>"
},
"positions": [
{
"deliveryType": "CONTAINER",
"quantity": 2,
"unitWeightKg": 1,
"unitLengthM": 1,
"unitWidthM": 1,
"unitHeightM": 1,
"contentDescription": "<string>",
"containerType": "<string>"
}
],
"pickupDate": "2023-12-25",
"deliveryDate": "2023-12-25",
"id": 123,
"created": "2023-11-07T05:31:56Z",
"reference": "<string>",
"exportedAt": "2023-11-07T05:31:56Z",
"status": "CREATED",
"freightOrderIdentifier": "<string>",
"requestId": "<string>"
}Get transport
Get transport record by its ID.
curl --request GET \
--url https://api.quivo.co/transports/{transportId}import requests
url = "https://api.quivo.co/transports/{transportId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/transports/{transportId}', 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/transports/{transportId}",
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/transports/{transportId}"
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/transports/{transportId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/transports/{transportId}")
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{
"shipTo": {
"city": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"state": "<string>",
"street2": "<string>"
},
"sellerId": 123,
"shipFrom": {
"city": "<string>",
"countryIso2": "<string>",
"street": "<string>",
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"zip": "<string>",
"state": "<string>",
"street2": "<string>"
},
"positions": [
{
"deliveryType": "CONTAINER",
"quantity": 2,
"unitWeightKg": 1,
"unitLengthM": 1,
"unitWidthM": 1,
"unitHeightM": 1,
"contentDescription": "<string>",
"containerType": "<string>"
}
],
"pickupDate": "2023-12-25",
"deliveryDate": "2023-12-25",
"id": 123,
"created": "2023-11-07T05:31:56Z",
"reference": "<string>",
"exportedAt": "2023-11-07T05:31:56Z",
"status": "CREATED",
"freightOrderIdentifier": "<string>",
"requestId": "<string>"
}Path Parameters
The unique identifier for a transport record.
Response
Returns the transport record details including routing and current status.
Complete transport record information. Contains transport details including origin, destination, mode, shipment references, and status.
Address data structure
Show child attributes
Show child attributes
Seller ID.
Address data structure
Show child attributes
Show child attributes
List of the positions for transportation.
Show child attributes
Show child attributes
Optional estimated date of departure
Optional estimated date of arrival
The unique identifier for the id
Timestamp when the item was created
Reference number or identifier for the item
The exported at timestamp
The current status of the item
CREATED, TRANSMITTED The unique identifier for the freightorderentifier
The unique identifier for the request