Skip to main content
GET
/
v1
/
shipments:batchGet
cURL
curl --request GET \
  --url https://api.goevery.co/v1/shipments:batchGet \
  --header 'Authorization: Bearer <token>'
{
  "shipments": [
    {
      "name": "shipments/669a8cba6af86466a42de2fe",
      "createTime": "2024-07-17T21:32:52.478Z",
      "updateTime": "2024-07-17T21:32:52.478Z",
      "quote": "quotes/669986bb4ae1239d5a92cdff",
      "courier": "couriers/coordinadora",
      "origin": "origins/66343b5ac38abe08414dc303",
      "recipient": {
        "firstName": "Valentina",
        "lastName": "Rodríguez López",
        "email": "[email protected]",
        "phoneNumber": "+573193210329",
        "address": {
          "regionCode": "CO",
          "administrativeArea": "Antioquia",
          "locality": "Abejorral",
          "addressLines": [
            "Calle 123",
            "Apto 2"
          ],
          "organization": "Happeett"
        },
        "documentType": "CC",
        "document": "1040777098"
      },
      "requiresPickup": true,
      "status": "LABEL_GENERATED",
      "shipmentCostCents": 1700000,
      "cashOnDeliveryCostCents": 350000,
      "totalCostCents": 2050000,
      "label": "240013993254",
      "labelUrl": "https://storage.googleapis.com/every-shipment-labels-production/690cd6eb79ac31909b2121e8.pdf?GoogleAccessId=..."
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

names
string
required

Comma-separated list of shipment names to retrieve. A maximum of 1000 shipments can be retrieved in a batch. Format: shipments/{shipment}

Example:

"shipments/669883e4bb5d6ab047c1c334,shipments/669a8cba6af86466a42de2fe"

Response

200 - application/json

Successfully fetched a batch of shipments.

shipments
object[]
required

Shipments requested in the same order as the names in the request.