FASTRAC-DOC-API V2 (B2B API STAGING)
  1. Courier API
FASTRAC-DOC-API V2 (B2B API STAGING)
  • Overview
  • Changelog V2
  • Region API
    • Province
      GET
    • City
      GET
    • District
      GET
    • Sub-District
      GET
    • Post Code
      GET
    • Search Region
      POST
  • Courier API
    • All Courier
      GET
    • Courier Service
      GET
  • Check Tariff API
    • Check Tariff (Express Delivery)
      POST
    • Check Tariff (Instant Delivery)
      POST
    • Calculate Multi Items
      POST
  • Order API
    • Order Express
      POST
    • Order Instant
      POST
    • Cancel Order
      POST
    • Tracking Order
      GET
    • Item Categories
      GET
  • Webhook API
    • Example Webhook payload
    • Set Webhook
      POST
    • Get Webhook
      GET
  • User API
    • Balance History
      POST
  • API-Tariff
  • API-Order
  1. Courier API

All Courier

GET
/courier/all
The allcourier API response provides information about a specific courier, including its code, name, logo, and various services offered, such as instant delivery, express delivery, COD, as well as pickup and drop-off options

Response#

{
    "courier_code": "jnt",
    "courier_name": "JNT",
    "logo": "https://apps.fastrac.id/assets/images/logo_kurir/logo_jnt.png",
    "instant_delivery": false,
    "express_delivery": true,
    "cod": false,
    "pickup": true,
    "dropoff": true
}

Description#

courier_code:
Type: String
Description: A unique code used to identify the courier. In this example, the code for the courier is "jnt," which refers to JNT Express.
courier_name:
Type: String
Description: The official name of the courier. In this case, "JNT" is the name of the courier service.
logo:
Type: String (URL)
Description: The URL of the courier's logo image. This is used to display the logo associated with the courier service, in this example:
https://apps.fastrac.id/assets/images/logo_kurir/logo_jnt.png.
instant_delivery:
Type: Boolean
Description: Indicates whether instant delivery service is available. A value of false means that this courier does not offer instant delivery services.
express_delivery:
Type: Boolean
Description: Indicates whether express delivery service is available. A value of true indicates that this courier provides express delivery options.
cod:
Type: Boolean
Description: Indicates whether Cash On Delivery (COD) service is available. With a value of false, this means that this courier does not offer cash on delivery service.
pickup:
Type: Boolean
Description: Indicates whether item pickup service is available. A value of true means that this courier provides pickup services.
dropoff:
Type: Boolean
Description: Indicates whether item drop-off service is available. A value of true indicates that this courier's drop-off service can be accessed.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/courier/all' \
--header 'Authorization: Basic Og=='
Response Response Example
{
    "success": true,
    "message": "",
    "data": [
        {
            "courier_code": "jnt",
            "courier_name": "JNT",
            "logo": "https://apps.fastrac.id/assets/images/logo_kurir/logo_jnt.png",
            "instant_delivery": false,
            "express_delivery": true,
            "cod": false,
            "pickup": true,
            "dropoff": true
        },
        {
            "courier_code": "idx",
            "courier_name": "ID Express",
            "logo": "https://apps.fastrac.id/assets/images/logo_kurir/logo_idx.png",
            "instant_delivery": false,
            "express_delivery": true,
            "cod": false,
            "pickup": true,
            "dropoff": true
        },
        {
            "courier_code": "anteraja",
            "courier_name": "AnterAja",
            "logo": "https://apps.fastrac.id/assets/images/logo_kurir/logo_anteraja.png",
            "instant_delivery": false,
            "express_delivery": true,
            "cod": false,
            "pickup": true,
            "dropoff": true
        },
        {
            "courier_code": "lalamove",
            "courier_name": "LalaMove",
            "logo": "https://apps.fastrac.id/assets/images/logo_kurir/logo_lalamove.png",
            "instant_delivery": true,
            "express_delivery": false,
            "cod": false,
            "pickup": true,
            "dropoff": false
        },
        {
            "courier_code": "grab",
            "courier_name": "Grab Express",
            "logo": "https://apps.fastrac.id/assets/images/logo_kurir/logo_grab.png",
            "instant_delivery": true,
            "express_delivery": false,
            "cod": false,
            "pickup": true,
            "dropoff": false
        },
        {
            "courier_code": "paxel",
            "courier_name": "Paxel",
            "logo": "https://apps.fastrac.id/assets/images/logo_kurir/logo_paxel.png",
            "instant_delivery": true,
            "express_delivery": true,
            "cod": false,
            "pickup": true,
            "dropoff": false
        },
        {
            "courier_code": "ninja",
            "courier_name": "Ninja",
            "logo": "https://apps.fastrac.id/assets/images/logo_kurir/logo_paxel.png",
            "instant_delivery": false,
            "express_delivery": true,
            "cod": true,
            "pickup": true,
            "dropoff": false
        }
    ]
}

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Body Params application/x-www-form-urlencoded

Responses

🟢200200 - Works fine.
application/json
Body

Modified at 2025-08-05 08:58:34
Previous
Courier API
Next
Courier Service
Built with