> For the complete documentation index, see [llms.txt](https://docs.lionparcel.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.lionparcel.com/home/home-en/lion-parcel-docs.md).

# Lion Parcel Docs

<h2 align="center">Lion Parcel System &#x26; API Documentation</h2>

<p align="center">Official documentation for API integration, shipment management, and Lion Parcel services in one place. This documentation helps you connect your system with Lion Parcel and manage shipments efficiently through APIs and operational tools. From rate checks, create shipment, tracking, webhooks, to guides for using dashboard features, everything is available in one integrated documentation.</p>

<table data-view="cards"><thead><tr><th></th><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="image">Cover image</th></tr></thead><tbody><tr><td><h4><i class="fa-leaf">:leaf:</i></h4></td><td><strong>Dashboard Guides</strong></td><td>Guide to using the Lion Parcel Dashboard, including shipment management and other important operational features</td><td><a href="https://docs.lionparcel.com/documentation">https://docs.lionparcel.com/documentation</a></td><td data-object-fit="cover"><a href="/files/78ba1e0098ec4e71c92017173f7d5e1bc358a0da">/files/78ba1e0098ec4e71c92017173f7d5e1bc358a0da</a></td></tr><tr><td><h4><i class="fa-server">:server:</i></h4></td><td><strong>Get Started with API</strong></td><td>Learn the first steps of API integration, from Sandbox access, testing, to go-live preparation.</td><td><a href="https://docs.lionparcel.com/api">https://docs.lionparcel.com/api</a></td><td><a href="/files/442bcb15ca24cb21a6025c2344c451779d2c8d59">/files/442bcb15ca24cb21a6025c2344c451779d2c8d59</a></td></tr><tr><td><h4><i class="fa-terminal">:terminal:</i></h4></td><td><strong>API reference</strong></td><td>Explore endpoint documentation, perform testing, and integrate the Lion Parcel API into your system.</td><td><a href="https://docs.lionparcel.com/api/getting-started/integration-flow-and-preparation">https://docs.lionparcel.com/api/getting-started/integration-flow-and-preparation</a></td><td><a href="/files/1880a71c21a6f3956677978dc7a83a10a44ed28b">/files/1880a71c21a6f3956677978dc7a83a10a44ed28b</a></td></tr></tbody></table>

***

{% columns %}
{% column %}

<figure><img src="/files/78ba1e0098ec4e71c92017173f7d5e1bc358a0da" alt=""><figcaption></figcaption></figure>
{% endcolumn %}

{% column %}

### Dashboard Guides

A brief guide to understanding operational processes at Lion Parcel:

1. **View Shipment Reports**
2. **Perform Shipment Checks**
3. **View API Token**

<a href="/spaces/EnuStqRfGYjt0By2449p/pages/LThc2RqOxBKU56Qt3TMy" class="button primary" data-icon="book-open">Guides</a>
{% endcolumn %}
{% endcolumns %}

***

{% columns %}
{% column %}

### Quick Start API Integration

**Get started in 3 steps**

1. **Get API Key**\
   Contact the Sales/Integration team to get Sandbox & Production credentials.
2. **Try the API in Sandbox**\
   Use the Postman Collection or GitBook API Playground.
3. **Implementation & Go-Live**\
   Follow the integration guide and checklist before production.

<a class="button primary" data-icon="rocket-launch"></a> <a href="/spaces/5HtE00mHMDjNuJVzRqjQ" class="button secondary" data-icon="terminal">API reference</a>
{% endcolumn %}

{% column %}

<pre class="language-javascript" data-title="tracking.js" data-overflow="wrap"><code class="lang-javascript">// Shipment Tracking
async function trackShipment(headers, trackingNumber) {
<strong>  const res = await fetch(`${BASE_URL}/v3/stt/track/q=${trackingNumber}`, {
</strong>    method: "GET",
    headers,
  });
  if (!res.ok) {
    const err = await res.text();
    throw new Error(`Tracking failed: ${res.status} ${err}`);
  }
  return res.json();
}

</code></pre>

{% endcolumn %}
{% endcolumns %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.lionparcel.com/home/home-en/lion-parcel-docs.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
