The logistics namespace serves the Nyuchi vehicle bookings backend. It exposes vehicles, bookings, drivers, and pickup or drop-off locations from theDocumentation Index
Fetch the complete documentation index at: https://nyuchidocs-mintlify-nyuchi-api-gateway-1778247744.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
nyuchi_logistics_db Supabase project.
Use these endpoints to power booking flows in consumer apps and partner integrations.
Base path: /v1/logistics
Endpoints
| Method | Path | Auth | Purpose |
|---|---|---|---|
GET | /v1/logistics/vehicles | Optional | List vehicles. Supports available, limit, offset. |
GET | /v1/logistics/vehicles/{vehicle_id} | Optional | Fetch a single vehicle. |
POST | /v1/logistics/bookings | Required | Create a booking for the calling customer. |
GET | /v1/logistics/bookings | Required | List bookings owned by the caller. |
GET | /v1/logistics/bookings/{booking_id} | Required | Fetch a booking owned by the caller. |
GET | /v1/logistics/locations | Optional | List pickup and drop-off locations. |
Find an available vehicle
Create a booking
The booking is automatically scoped to the authenticated caller viacustomer_id.
List my bookings
GET /v1/logistics/bookings only returns rows owned by the caller. Use limit and offset for pagination.