curl --request GET \
--url https://api.quivo.co/transportsimport requests
url = "https://api.quivo.co/transports"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/transports', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/transports")
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,
"pickupDate": "2023-12-25",
"deliveryDate": "2023-12-25",
"id": 123,
"created": "2023-11-07T05:31:56Z",
"reference": "<string>",
"status": "CREATED",
"sort": {
"float": true,
"short": true,
"nodeType": "ARRAY",
"number": true,
"binary": true,
"integralNumber": true,
"long": true,
"boolean": true,
"double": true,
"int": true,
"valueNode": true,
"containerNode": true,
"missingNode": true,
"object": true,
"pojo": true,
"floatingPointNumber": true,
"bigDecimal": true,
"bigInteger": true,
"textual": true,
"array": true,
"null": true
}
}
]List transports
List transport records.
curl --request GET \
--url https://api.quivo.co/transportsimport requests
url = "https://api.quivo.co/transports"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/transports', 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",
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"
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")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/transports")
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,
"pickupDate": "2023-12-25",
"deliveryDate": "2023-12-25",
"id": 123,
"created": "2023-11-07T05:31:56Z",
"reference": "<string>",
"status": "CREATED",
"sort": {
"float": true,
"short": true,
"nodeType": "ARRAY",
"number": true,
"binary": true,
"integralNumber": true,
"long": true,
"boolean": true,
"double": true,
"int": true,
"valueNode": true,
"containerNode": true,
"missingNode": true,
"object": true,
"pojo": true,
"floatingPointNumber": true,
"bigDecimal": true,
"bigInteger": true,
"textual": true,
"array": true,
"null": true
}
}
]Query Parameters
Search query string used to filter results. This field supports specific syntax for filtering across multiple fields.
Optional sorting criteria for the results. Format is typically 'field:direction' (e.g., 'created:desc').
The page number to retrieve when using offset-based pagination. Ignored if 'searchAfter' is provided.
Used for cursor-based pagination. Pass the 'sort' key value from the last item of the previous page to retrieve the next set of results efficiently. Overrides 'page'.
The maximum number of items to return per page. Used for both offset and cursor-based pagination.
Response
Returns an array of transport record summaries with status and routing information.
Address data structure
Show child attributes
Show child attributes
Seller ID.
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 current status of the item
CREATED, TRANSMITTED The
Show child attributes
Show child attributes