{
  "openapi": "3.1.0",
  "info": {
    "title": "Zapi — Logistics",
    "description": "Every Logistics endpoint on Zapi. Rendered catalog: https://zpi.web.id/category/logistics",
    "version": "1.0.0",
    "license": {
      "name": "Zapi Terms of Service",
      "url": "https://zpi.web.id/terms"
    }
  },
  "servers": [
    {
      "url": "https://api.zpi.web.id"
    }
  ],
  "security": [
    {
      "ApiKeyAuth": []
    }
  ],
  "components": {
    "securitySchemes": {
      "ApiKeyAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "x-api-key"
      }
    },
    "schemas": {
      "Envelope": {
        "type": "object",
        "required": [
          "status",
          "message"
        ],
        "properties": {
          "status": {
            "type": "string",
            "enum": [
              "success",
              "error"
            ]
          },
          "message": {
            "type": "string"
          },
          "content": {}
        }
      }
    },
    "responses": {
      "Error": {
        "description": "Invalid key, rate limit, or upstream failure",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/Envelope"
            }
          }
        }
      }
    }
  },
  "externalDocs": {
    "url": "https://zpi.web.id/category/logistics/llms.txt"
  },
  "paths": {
    "/v1/logistics:cek-resi/track": {
      "get": {
        "operationId": "logistics_cek_resi_track",
        "summary": "Track Package",
        "description": "Multi-courier package tracking by AWB via cekresi.com — 38 Indonesian couriers.",
        "tags": [
          "Cek Resi (cekresi.com)"
        ],
        "externalDocs": {
          "url": "https://zpi.web.id/api/logistics/cek-resi#reference-track"
        },
        "parameters": [
          {
            "name": "awb",
            "in": "query",
            "required": true,
            "description": "Tracking number (AWB / resi)",
            "schema": {
              "type": "string",
              "example": "JJ2001297560"
            }
          },
          {
            "name": "courier",
            "in": "query",
            "required": true,
            "description": "Courier code (38 supported)",
            "schema": {
              "type": "string",
              "enum": [
                "jne",
                "shopee-express",
                "jnt-express",
                "jnt-cargo",
                "sicepat",
                "ninja",
                "lion-parcel",
                "anteraja",
                "pos-indonesia",
                "tiki",
                "jdl-express",
                "jx-express",
                "pahala-express",
                "indah-logistik-cargo",
                "jet-express",
                "oexpress",
                "rpx",
                "rex-indonesia",
                "21-express",
                "ikea",
                "skynet",
                "ark-xpress",
                "asp-express",
                "rosalia-express",
                "herona-express",
                "sentral-cargo",
                "acommerce",
                "gtl-goto-logistics",
                "paxel",
                "sap-express",
                "janio-asia",
                "pcp-express",
                "pt-ncs",
                "nss-express",
                "rcl-red-carpet-logistics",
                "qrim-express",
                "standard-express-lwe",
                "luar-negeri-bea-cukai"
              ],
              "example": "jnt-express"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Envelope"
                },
                "example": {
                  "status": "success",
                  "message": "Success",
                  "content": {
                    "ok": true,
                    "awb": "JJ2001297560",
                    "count": 13,
                    "status": "Delivered",
                    "courier": "jnt-express",
                    "history": [
                      {
                        "date": "11 May 2026 08:40",
                        "description": "Package has been delivered to Nabyan Salon,"
                      },
                      {
                        "date": "11 May 2026 04:49",
                        "description": "Package will be delivered to your address by Iqfana Anggit"
                      },
                      {
                        "date": "10 May 2026 21:44",
                        "description": "Package has been arrived at SUKOHARJO Drop Point."
                      },
                      {
                        "date": "10 May 2026 19:00",
                        "description": "Package will be departed to SUKOHARJO Drop Point"
                      },
                      {
                        "date": "10 May 2026 16:43",
                        "description": "Package has been arrived at KARANG ANYAR Transit Center."
                      },
                      {
                        "date": "10 May 2026 16:36",
                        "description": "Package has been arrived at KARANG ANYAR Transit Center."
                      },
                      {
                        "date": "10 May 2026 16:36",
                        "description": "Package has been arrived at KARANG ANYAR Transit Center."
                      },
                      {
                        "date": "09 May 2026 19:46",
                        "description": "Package will be departed to KARANG ANYAR Transit Center"
                      }
                    ],
                    "shipper": null,
                    "receiver": null,
                    "shareUrl": "https://cekresi.com/?r=w&noresi=JJ2001297560",
                    "shipDate": null,
                    "delivered": true,
                    "scrapedAt": "2026-08-02T07:46:11.461Z",
                    "courierCode": "JET",
                    "courierName": "J&T Express",
                    "lastPosition": "Package has been delivered to Nabyan Salon, (Delivered)",
                    "customerService": "jntcare@jet.co.id : Telp 021-8066-1888,"
                  }
                }
              }
            }
          },
          "4XX": {
            "$ref": "#/components/responses/Error"
          },
          "default": {
            "$ref": "#/components/responses/Error"
          }
        }
      }
    }
  }
}