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

# Quickstart

Let's get you up and running in 5 minutes. This guide will walk you through getting your API key, creating your first delivery, and seeing the result.

### 1. Get Your API Key

Before you can make any API calls, you need to get your API key.

You can find your API key in the **Settings > General > API Keys** section of your [Dora Dashboard](https://fleet.usedora.com/dashboard).

<video autoPlay muted loop playsInline className="w-full aspect-video rounded-xl">
  <source src="https://mintcdn.com/usedora/lrENzSLeSEf2ozaH/assets/dora-api-key.webm?fit=max&auto=format&n=lrENzSLeSEf2ozaH&q=85&s=27ceb4f0caccf06d06268dd09d97b2a7" type="video/webm" data-path="assets/dora-api-key.webm" />

  Your browser does not support the video tag.
</video>

<Info>
  This guide uses the **Development** environment:
  `https://dev.api.fleets.usedora.com/api/v1`
</Info>

### 2. Make Your First Call (Create Delivery)

Now, let's use that key to create your first delivery. Open your terminal and paste in the following `curl` command, replacing `YOUR_API_KEY` with your **Development API Key**.

This command creates a simple delivery with the minimum required fields.

<Expandable>
  ```bash theme={null}
  curl --request POST \
    --url [https://dev.api.fleets.usedora.com/api/v1/deliveries/create] (https://dev.api.fleets.usedora.com/api/v1/deliveries/create) \
       --header 'x-api-key: YOUR_API_KEY' \
       --header 'Content-Type: application/json' \
       --data '{
    "creation_date": "2025-08-28",
    "delivery_fee": 0,
    "iam_sender": true,
    "riderid": "2ce7ff7a-2c76-4e18-b681-41121ef48631",
    "send_sms": true,
    "sender_address": "85 Allen Avenue, Ikeja, Lagos, Nigeria",
    "sender_email": "devs@venco.co",
    "sender_name": "Takasuki",
    "sender_phone": "8131013478",
    "sender_phonecode": "234",
    "receivers": [
      {
        "customer_address": "Penthouse - DC, Demo Estate, 404, Not Found Road, Lagos, Nigeria",
        "customer_name": "Victor Maduforo",
        "customer_phone_number": "8131013478",
        "customer_phone_code": "234",
        "item_type": "manual",
        "items": [
          {
            "item_description": "Midea 463L Top Mount Direct Cool Refrigerator - SBS (MDRT645MTU46)",
            "item_quantity": 1,
            "item_value": 30
          }
        ]
      }
    ]
  }'
  ```
</Expandable>
