> ## Documentation Index
> Fetch the complete documentation index at: https://docs.goshippo.com/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.goshippo.com/feedback

```json
{
  "path": "/docs/Carriers/Integration_guides/BetterTrucks/track",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Track

> Track your Better Trucks shipments using the Shippo Tracking API with the tracking number from your label purchase.

If you purchased your shipping label through Shippo, you can also get all the tracking details of your Shipment using the Tracking API.

## HTTP Method

POST

## URL

```
https://api.goshippo.com/tracks/better_trucks/track_number_id/
```

### Request Payload

| Parameter in URL    | Description                                                                                                                                                                                                                   |
| ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| track\_number\_id\* | `tracking_number` value of the transaction response, we get in the transaction call response. [create shipments call response](/docs/Carriers/Integration_guides/BetterTrucks/create_shipment#request-sample-for-a-shipment). |

## Response Code

200 OK

### Example

#### Request Sample

```shell cURL theme={null}
curl --location --request GET 'https://api.goshippo.com/tracks/better_trucks/BTS_0018P2LD557/’\
--header 'Authorization: ShippoToken <API_TOKEN>’ \
--header 'Content-Type: application/json' \
--data-raw '{
}’

```

#### Response Sample

```json theme={null}
{
   "tracking_number": "BTS_0018P2LD557",
   "carrier": "better_trucks",
   "servicelevel": {
       "name": null,
       "token": null
   },
   "transaction": "6ceb8e3fc07446d08c5c5884ccb4b1b4",
   "address_from": {
       "city": "Chicago",
       "state": "IL",
       "zip": "60612",
       "country": "US"
   },
   "address_to": {
      "city": "Nashville",
       "state": "TN",
       "zip": "37201",
       "country": "US"
   },
   "eta": null,
   "original_eta": null,
   "metadata": null,
   "test": false,
   "tracking_status": null,
   "tracking_history": [
       {
           "status_date": null,
           "status_details": "Pre-Transit: Shipment information has been transmitted to the shipping carrier but it has not yet been scanned and picked up.",
           "location": null,
           "substatus": null,
           "object_created": "2023-01-26T18:37:13.668Z",
           "object_updated": "2023-01-26T18:37:13.668Z",
           "object_id": "24d41f49a9ac419e8d66f7fae4fce705",
           "status": "UNKNOWN"
       }
   ],
   "messages": []
}




```
