Get Available Couriers

Get list of available carriers at any time

This endpoint is used to retrieve available couriers based on your specified route, which can be one of the following: interstate, intrastate, international, frozen-international, international_us, or all. The response from this endpoint can then be used as the carrier_name in the Get Single Rate endpoint.

Additionally, the type parameter is required in this request, and it must be set to one of the specified routes to retrieve the relevant couriers. Ensure that this parameter is included in the endpoint call for accurate results.

Note:

  • interstate: Shipping between different states within the same country.

  • intrastate: Shipping within a single state.

  • international_us: Shipping within the United States.

  • international: Shipping between different countries.

  • frozen-international: Shipping frozen items (e.g., foodstuffs) internationally. Supported countries include shipping from Nigeria to the US, Canada, and the UK.

Request Sample

curl --location 'https://delivery-staging.apiideraos.com/api/v2/token/shipments/courier-partners/?type=all' \
--header 'Authorization: Bearer Secret Key'

Response Sample

{
    "status": false,
    "message": "The type field is required."
}

Last updated