Validate address (global)

Verifies an address by checking whether we have a matching verified deliverable address.

For high-accuracy results, we suggest including the address state, and country in the address string e.g Landmark Towers, Victoria Island, Lagos, Nigeria.

POST https://api.shipbubble.com/v1/shipping/address/validate

Request Body

NameTypeDescription

name*

String

name of address holder

email*

String

email address of address holder

phone*

String

phone number of address holder

address*

String

address name to be validated

{
    "status": "success",
    "message": "Validation successful",
    "data": {
        "name": "Lebron James",
        "email": "lebron@james.com",
        "phone": "+2348057575855",
        "formatted_address": "15 Babatunde Jose St, Victoria Island 106104, Lagos, Nigeria",
        "country": "Nigeria",
        "country_code": "NG",
        "city": "Lagos",
        "city_code": "Lagos",
        "state": "Lagos",
        "state_code": "LA",
        "postal_code": "106104",
        "latitude": 6.436058,
        "longitude": 3.433361,
        "address_code": 98794022
    }
}

Last updated