> 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/lion-parcel-docs.md).

# Lion Parcel Docs

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

<p align="center">Dokumentasi resmi untuk integrasi API, pengelolaan pengiriman, dan layanan Lion Parcel dalam satu tempat. Dokumentasi ini membantu Anda menghubungkan sistem dengan Lion Parcel serta mengelola pengiriman secara efisien melalui API dan tools operasional. Mulai dari cek tarif, create shipment, tracking, webhook, hingga panduan penggunaan fitur di dashboard, semua tersedia dalam satu dokumentasi terpadu.</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>Panduan menggunakan Dashboard Lion Parcel, termasuk pengelolaan pengiriman dan fitur operasional penting lainnya</td><td><a href="https://docs.lionparcel.com/documentation">https://docs.lionparcel.com/documentation</a></td><td data-object-fit="cover"><a href="/files/W3N33AcyvGDotvX3jXgU">/files/W3N33AcyvGDotvX3jXgU</a></td></tr><tr><td><h4><i class="fa-server">:server:</i></h4></td><td><strong>Get Started with API</strong></td><td>Pelajari langkah awal integrasi API, mulai dari akses Sandbox, pengujian, hingga persiapan go-live.</td><td><a href="https://docs.lionparcel.com/api">https://docs.lionparcel.com/api</a></td><td><a href="/files/NACxtbBuD1nmhyEhiv1A">/files/NACxtbBuD1nmhyEhiv1A</a></td></tr><tr><td><h4><i class="fa-terminal">:terminal:</i></h4></td><td><strong>API reference</strong></td><td>Jelajahi dokumentasi endpoint, lakukan pengujian, dan integrasikan API Lion Parcel ke sistem Anda.</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/2OpYvaWDZBBNluwtiMhR">/files/2OpYvaWDZBBNluwtiMhR</a></td></tr></tbody></table>

***

{% columns %}
{% column %}

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

{% column %}

### Dashboard Guides

Panduan ringkas untuk memahami proses operasional di Lion Parcel:

1. **Melihat Laporan Pengiriman**
2. **Melakukan Pengecekan Pengiriman**
3. **Melihat Token API**

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

***

{% columns %}
{% column %}

### Quick Start API Integration

**Mulai dalam 3 Langkah**

1. **Dapatkan API Key**\
   Hubungi tim Sales/Integration untuk mendapatkan kredensial Sandbox & Production.
2. **Coba API di Sandbox**\
   Gunakan Postman Collection atau API Playground GitBook.
3. **Implementasi & Go-Live**\
   Ikuti guide integrasi dan checklist sebelum produksi.

<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/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.
