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

# Quickstart

Welcome to the **TrueCold Public API** Quickstart! This guide will help you get started with automating your logistics processes by connecting to TrueCold's API. Whether you're tracking shipments, managing sensors, or streamlining your delivery workflows, this API provides the tools you need.

> **Note:** Check the end of this page for asditional resources, testing capabilities, and saved responses.

***

## Example Request

Here’s an example of how to fetch your shipments using `curl`:

<Warning>
  As seen on the Documentation section, make sure to obtain your API key from
  the TrueCold platform and replace `YOUR_API_KEY` in the example below with
  your actual API key.
</Warning>

```bash theme={null}
curl -X GET "http://localhost:3009/api/v1/shipments"   -H "Authorization: Bearer YOUR_API_KEY"   -H "Content-Type: application/json"
```

**Response:**

```json theme={null}
    "error": false,
    "data": [
        {
            "id": "382bc9c0-6a3b-4255-97f4-98e91ceab047",
            "code": "152670",
            "account_id": "47dff1b8-f83e-4085-b71f-7223b71101c7",
            "created_at": "2025-02-10T16:26:12.746Z"
        }
    ]
```

***

## Additional Resources

### Postman Documentation

For more detailed documentation, testing capabilities, and pre-saved responses, visit our Postman documentation:

[Postman Documentation](https://documenter.getpostman.com/view/39198020/2sAYX3sixE)

### Swagger UI

Explore the API schema interactively:

[Swagger](https://api.truecold.io/api-docs/)

***

Feel free to reach out to our support team if you have any questions or encounter any issues while integrating the API. Happy automating!
