Couriers

The Courier API allows you to retrieve a list of available couriers on our network and their respective capabilities

GET https://api.shipbubble.com/v1/shipping/couriers

{
    "status": "success",
    "message": "Retrieved successfully",
    "data": [
        {
            "name": "Kwik",
            "service_code": "kwik",
            "pin_image": "https://res.cloudinary.com/delivry/image/upload/v1637023902/courier_images/avxsur.jpg",
            "origin_country": "NG",
            "international": false,
            "domestic": true,
            "express": false,
            "status": "not-operational",
            "package_categories": [
                {
                    "id": "90097994",
                    "category": "accessories"
                },
                {
                    "id": "3035980",
                    "category": "accessories"
                }
            ]
        },
        {
            "name": "Redstar",
            "service_code": "red_star_courier",
            "pin_image": "https://res.cloudinary.com/delivry/image/upload/v16370/courier_images/avxsur.jpg",
            "origin_country": "NG",
            "international": false,
            "domestic": true,
            "express": false,
            "status": "operational",
            "package_categories": [
                {
                    "id": "90097994",
                    "category": "accessories"
                },
                {
                    "id": "3035980",
                    "category": "accessories"
                }
            ]
        },
        {
            "name": "Shap Shap",
            "service_code": "shap_shap",
            "pin_image": "https://res.cloudinary.com/delivry/image/upload/v16372/courier_images/avxsur.jpg",
            "origin_country": "NG",
            "international": false,
            "domestic": true,
            "express": false,
            "status": "not-operational",
            "package_categories": [
                {
                    "id": "90097994",
                    "category": "accessories"
                },
                {
                    "id": "3035980",
                    "category": "accessories"
                }
            ]
        }
    ]
}

Last updated