Check Serviceability V3

To check if a location is serviceable

Get serviceability check

POST {{apiUrl}}fulfillment/orders/check_serviceability_v3

Request Body

Name
Type
Description

apikey*

String

Authentication Token

latitude*

String

Latitude of the customer

longitude*

String

Longitude of the customer

zipcode*

String

Zipcode of the patient

service_type*

String

Stringified array of service types. Service types includes "quick", "regular", "same_day" and "pan_india"

For eg. ["regular","same_day"]

full_address

String

Full address of the patient for eg. Office B, 3rd Floor, 4D Square Mall, below PVR Cinema, Motera, Ahmedabad, Gujarat 380005

{
    "status_code": "1",
    "status_message": "Success",
    "datetime": "2025-05-14 10:22:04",
    "version": "1.1.133",
    "data": {
        "quick": null,
        "regular": {
            "serviceable": true,
            "error_slug": "",
            "location_token": "0P6Hm1/BNc7uxzkOSZaBLVm6SiC2t0JAqdfTAkYsDVYnjO35Tp80VHQ/aZ9mWsGRs0y47uR97JYB5QvSDMltGUXuEppfksSED8isKapydaYzu+gfqX/0pH9syqVpDt2KL1tjCG+YhTdGeHuHDTKfOvFXtcAzEMOHWEOr8sSvnT4="
        },
        "same_day": {
            "serviceable": true,
            "error_slug": "",
            "location_token": "0P6Hm1/BNc7uxzkOSZaBLeGCJnWMLSOhvviSlR4mPlwrfwFot7T7TaVdW3JvgTd9C6SfulvWvA9nNXXXp2J3cNEKLbLvMJwhxzTgAWUP8wrGBBL2ONKI3DD/wx9lNM2R+5utflMGYgl6kuZ3zfZlEQz4Bz9yNzOTirPgVMYw/7A="
        },
        "pan_india": null
    }
}

Last updated

Was this helpful?