FASTRAC-DOC-API V2 (B2B API STAGING)
  1. Order 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. Order API

Tracking Order

GET
/order/track
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/order/track' \
--header 'access-key: {{access_key}}' \
--header 'secret-key: {{secret_key}}' \
--header 'Method: this-should-have-been-a-post-request' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
    "courier_code":"paxel",
    "awb":"CO.FASTRAC-20241205-1-R10BPJ"
}'
Response Response Example
200 - 200 - Works fine.
{
    "success": true,
    "message": "success",
    "data": {
        "awb": "CO.FASTRAC-20250809-1-VIE123",
        "shipper_name": "Fath",
        "shipper_address": "sunter garden blok f17/19k",
        "receiver_name": "Niken",
        "receiver_address": "Jln.lama No13 Rt12/22 Kota Bambu Utara, Palmerah Jakbar 11420",
        "courier": "PAXEL",
        "courier_code": "paxel",
        "service": "-",
        "history": [
            {
                "timestamp": "2025-08-09 11:42:13",
                "status": "PENDING_PICKUP",
                "desc": null,
                "note": "LA ODE LUKMAN ALFARIZ is on the way to pickup location",
                "mapping_code": "RTP",
                "driver_name": null,
                "driver_phone": null,
                "driver_license_plate": null,
                "proof_image": [],
                "receiver_name": null,
                "receiver_relation": null,
                "tracking_link": null,
                "location": "TANJUNG PRIOK, KOTA JAKARTA UTARA"
            },
            {
                "timestamp": "2025-08-09 12:05:21",
                "status": "PENDING_PICKUP",
                "desc": null,
                "note": "Pahlawan telah tiba di lokasi penjemputan",
                "mapping_code": "COL",
                "driver_name": null,
                "driver_phone": null,
                "driver_license_plate": null,
                "proof_image": [],
                "receiver_name": null,
                "receiver_relation": null,
                "tracking_link": null,
                "location": "TANJUNG PRIOK, KOTA JAKARTA UTARA"
            },
            {
                "timestamp": "2025-08-09 12:08:23",
                "status": "IN_TRANSIT",
                "desc": null,
                "note": "Hore! Paket Anda telah diterima oleh Hero",
                "mapping_code": "PAPV",
                "driver_name": null,
                "driver_phone": null,
                "driver_license_plate": null,
                "proof_image": [],
                "receiver_name": null,
                "receiver_relation": null,
                "tracking_link": null,
                "location": "TANJUNG PRIOK, KOTA JAKARTA UTARA"
            },
            {
                "timestamp": "2025-08-09 12:52:09",
                "status": "IN_TRANSIT",
                "desc": null,
                "note": "Shipment in transit",
                "mapping_code": "POL",
                "driver_name": null,
                "driver_phone": null,
                "driver_license_plate": null,
                "proof_image": [],
                "receiver_name": null,
                "receiver_relation": null,
                "tracking_link": null,
                "location": "TANJUNG PRIOK, KOTA JAKARTA UTARA"
            },
            {
                "timestamp": "2025-08-09 20:21:35",
                "status": "IN_TRANSIT",
                "desc": null,
                "note": "Muhammad Akbar S_PHL P0037 on destination",
                "mapping_code": "COD",
                "driver_name": null,
                "driver_phone": null,
                "driver_license_plate": null,
                "proof_image": [],
                "receiver_name": null,
                "receiver_relation": null,
                "tracking_link": null,
                "location": "PAL MERAH, KOTA JAKARTA BARAT"
            },
            {
                "timestamp": "2025-08-09 20:21:49",
                "status": "DELIVERED",
                "desc": null,
                "note": "Kiriman Anda telah berhasil dikirimkan oleh",
                "mapping_code": "PDO",
                "driver_name": null,
                "driver_phone": null,
                "driver_license_plate": null,
                "proof_image": [],
                "receiver_name": null,
                "receiver_relation": null,
                "tracking_link": null,
                "location": "PAL MERAH, KOTA JAKARTA BARAT"
            }
        ]
    },
    "timestamp": "2025-08-11T06:34:51.454Z"
}

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 *****************
Header Params

Body Params application/json

Examples

Responses

🟢200200 - Works fine.
application/json
Body

🟠400400 - Bad request. Missing required parameters or parameters are not correct
🟠404404 - Not Found
Modified at 2025-08-22 03:44:57
Previous
Cancel Order
Next
Item Categories
Built with