Download OpenAPI specification:
LOGIBIDS, your all-in-one Transportation, Rental, and Delivery solution from LTS INTERNATIONAL LOGISTICS SERVICES CO WLL.
Our commitment to ideal reliability and safety ensures your goods reach their destination promptly, and our unique auction system guarantees competitive prices.
LOGIBIDS is your gateway to a future where connectivity, efficiency, and savings converge in the world of logistics.
Join us and experience a transportation revolution today!
Use the API key obtained from Logibids to generate a JWT token. Pass this token in the Authorization header for all API requests. The system will automatically generate an expiry time for the token.
Authorization Header Format:
Authorization: Bearer TOKEN
Important:
The word Bearer in the Authorization header is case-sensitive. Access tokens carry sensitive privileges, so keep them secure.
Use this API to add an enquiry.
Details:
Status:
Trip Status:
Get details of enquiry
| id required | number Example: 8841 |
| Accept-Language required | string Example: en User preferred language |
| x-portal required | string Value: "CLIENT" Specifies the portal type. |
{- "statusCode": 200,
- "message": null,
- "status": 1,
- "data": {
- "token": 8841,
- "status": "RUNNING",
- "trip_status": "IN-PROCESS",
- "trip_inprogress_at": "string",
- "trip_started_at": "string",
- "trip_ended_at": "string",
- "tracking": [
- {
- "status": "ACCEPTED",
- "timestamp": "2025-10-07T12:55:03.696Z",
- "description": "The enquiry has been accepted by the driver. Client has to do the payment."
}
]
}
}Calculates payment details including commission, taxes, and total.
| Accept-Language required | string Example: en User preferred language |
| x-portal required | string Value: "CLIENT" Specifies the portal type. |
| number_of_vehicles | number <float> >= 1 |
required | object |
required | object |
{- "number_of_vehicles": 1,
- "from_location": {
- "type": "pickup",
- "address_type": "residential_building",
- "country_code": "string",
- "lat": 0.1,
- "long": 0.1,
- "address": "string",
- "state": "string",
- "area": "string",
- "block": "string",
- "street": "string",
- "avenue": "string",
- "building_number": "string",
- "appartment_number": "string",
- "user_name": "string",
- "phone_number": "string",
- "email": "string"
}, - "to_location": {
- "type": "pickup",
- "address_type": "residential_building",
- "country_code": "string",
- "lat": 0.1,
- "long": 0.1,
- "address": "string",
- "state": "string",
- "area": "string",
- "block": "string",
- "street": "string",
- "avenue": "string",
- "building_number": "string",
- "appartment_number": "string",
- "user_name": "string",
- "phone_number": "string",
- "email": "string"
}
}{- "statusCode": 200,
- "message": null,
- "data": {
- "distance_km": 4.555,
- "amount": 10,
- "commission_amount": 1.2,
- "platform_taxes": [
- {
- "amount": 0.012,
- "name": "VAT"
}
], - "platform_tax": 0.024,
- "sp_tax": 0.3,
- "sp_taxes": [
- {
- "amount": 0.2,
- "name": "Municipality Tax"
}
], - "total": 11.524
}, - "status": 1
}Use this API to add enquiry
| Accept-Language required | string Example: en User preferred language |
| x-portal required | string Value: "CLIENT" Specifies the portal type. |
| number_of_vehicles | number <float> >= 1 |
required | object |
required | object |
{- "number_of_vehicles": 1,
- "from_location": {
- "type": "pickup",
- "address_type": "residential_building",
- "country_code": "string",
- "lat": 0.1,
- "long": 0.1,
- "address": "string",
- "state": "string",
- "area": "string",
- "block": "string",
- "street": "string",
- "avenue": "string",
- "building_number": "string",
- "appartment_number": "string",
- "user_name": "string",
- "phone_number": "string",
- "email": "string"
}, - "to_location": {
- "type": "pickup",
- "address_type": "residential_building",
- "country_code": "string",
- "lat": 0.1,
- "long": 0.1,
- "address": "string",
- "state": "string",
- "area": "string",
- "block": "string",
- "street": "string",
- "avenue": "string",
- "building_number": "string",
- "appartment_number": "string",
- "user_name": "string",
- "phone_number": "string",
- "email": "string"
}
}{- "statusCode": 200,
- "message": "The enquiry posted succesfully",
- "data": "8841",
- "status": 1
}