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

# Base URL and Authentication

## Base URL

Base URL for Express Delivery Order API

```
https://delivery-api.express.ci/

```

## Authentication

Express Delivery Order API uses Bearer Token authentication. You must include a valid token in the `Authorization` header of your API requests.

### Example

```http theme={null}
GET /orders HTTP/1.1
Host: delivery-api.express.ci
Authorization: Bearer YOUR_ACCESS_TOKEN
```

### How to Obtain an Access Token

The access token is provided by Express. Contact your Express API administrator to receive your access token.

### Including the Access Token

Include the access token in the `Authorization` header for each request to the API. The format should be as follows:

```
Authorization: Bearer YOUR_ACCESS_TOKEN
```

Replace `YOUR_ACCESS_TOKEN` with the actual token you received after authentication.

### Example Request

```http theme={null}
GET /orders HTTP/1.1
Host: api.mtn.express.ci
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
```

Ensure you keep your access token secure and do not share it with unauthorized parties.
