POST
/api/v1/quotes
Auth: Bearer token
Request Quote
Submit shipment dimensions and route details to receive one or more carrier quote options.
Body parameters
Example response
<?php
return [
'success' => true,
'data' => [
'quote_id' => 'quote_123',
'merchant_order_ref' => 'ORD-8842',
'merchant_id' => 'mrc_001',
'environment_id' => 'env_live_001',
'shipment_id' => 'shp_101',
'status' => 'pending',
'requested_at' => '2026-02-17T10:22:00Z',
'expires_at' => '2026-02-17T11:22:00Z',
'options' => [
[
'quote_option_id' => 'qopt_001',
'carrier_code' => 'fastship',
'service_code' => 'next_day',
'currency' => 'ZAR',
'amount' => '225.00',
'tax_amount' => '33.75',
'total_amount' => '258.75',
'eta_from' => '2026-02-18T08:00:00Z',
'eta_to' => '2026-02-18T17:00:00Z',
'rules' => [
'max_weight_kg' => 25
]
]
],
'selected_option' => null
]
];
Request examples
curl -X POST \
"https://spaces-api-main-rwk71f.laravel.cloud/api/v1/quotes" \
-H "Authorization: Bearer <token>" \\
-H "Content-Type: application/json" \\
--data '{
"merchant_id": "mrc_001",
"merchant_order_ref": "ORD-8842",
"collection_date": "2026-02-18T09:00:00Z",
"pickup_address": {
"name": "Warehouse A",
"code": "WH-A",
"company": "PicknDrop",
"address_line_1": "60 Newline Road",
"address_line_2": "Sunningdale",
"town": "Sunningdale",
"city": "Cape Town",
"province": "Western Cape",
"post_code": "7441",
"country": "ZA",
"first_name": "John",
"last_name": "Doe",
"phone": "+27-21-555-1234",
"latitude": -33.7801,
"longitude": 18.4567,
"google_place_id": "ChIJN1t_tDeuEmsRUsoyG83frY4"
},
"dropoff_address": {
"name": "Customer",
"code": "CUST-1001",
"company": "Customer Co",
"address_line_1": "10 Newline Road",
"address_line_2": "Sunningdale",
"town": "Sunningdale",
"city": "Cape Town",
"province": "Western Cape",
"post_code": "7441",
"country": "ZA",
"first_name": "Jane",
"last_name": "Smith",
"phone": "+27-21-555-5678",
"latitude": -33.7812,
"longitude": 18.4588,
"google_place_id": "ChIJrTLr-GyuEmsRBfy61i59si0"
},
"parcels": [
{
"title": "ABC",
"weight_kg": 1,
"length_cm": 10,
"width_cm": 10,
"height_cm": 10
}
]
}'