Komerce Tracking API

Airway bill tracking

Operations 2

POST /track/waybill Track an airway bill #
GET /order/api/v1/orders/history-airway-bill Get airway bill history #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/komerce-tracking-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

komerce-tracking-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Komerce Tracking API
  version: v1
  x-apievangelist-generated: '2026-07-19'
  x-apievangelist-method: generated
  x-refined-note:
  - x-apievangelist-source differs across the merged source definitions and was not carried
  description: 'Operations tagged Tracking across 2 of this provider''s published API definitions: komerce-shipping-cost-openapi.yml, komerce-shipping-delivery-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://rajaongkir.komerce.id/api/v1
  description: Live environment
- url: https://api.collaborator.komerce.id
  description: Production environment
- url: https://api-sandbox.collaborator.komerce.id
  description: Sandbox environment
security:
- ApiKeyAuth: []
tags:
- name: Tracking
  description: Airway bill tracking
paths:
  /track/waybill:
    post:
      operationId: trackWaybill
      tags:
      - Tracking
      summary: Track an airway bill
      description: Retrieve real-time shipment status and manifest history for an AWB number from a supported courier.
      parameters:
      - name: awb
        in: query
        required: true
        description: Airway bill (tracking) number.
        schema:
          type: string
      - name: courier
        in: query
        required: true
        description: Courier code.
        schema:
          type: string
      - name: last_phone_number
        in: query
        required: false
        description: Last 5 digits of the recipient phone number — required for additional validation by certain couriers including JNE.
        schema:
          type: string
      responses:
        '200':
          description: Waybill summary, details, delivery status and manifest
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WaybillResponse'
        '400':
          description: Invalid or missing parameters
        '401':
          description: Missing or invalid API key
    servers:
    - url: https://rajaongkir.komerce.id/api/v1
      description: Live environment
  /order/api/v1/orders/history-airway-bill:
    get:
      operationId: getAirwayBillHistory
      tags:
      - Tracking
      summary: Get airway bill history
      parameters:
      - name: shipping
        in: query
        required: true
        description: Courier code.
        schema:
          type: string
      - name: airway_bill
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Airway bill tracking history
        '401':
          description: Missing or invalid API key
    servers:
    - url: https://api.collaborator.komerce.id
      description: Production environment
    - url: https://api-sandbox.collaborator.komerce.id
      description: Sandbox environment
components:
  schemas:
    Meta:
      type: object
      properties:
        message:
          type: string
        code:
          type: integer
        status:
          type: string
    WaybillResponse:
      type: object
      properties:
        meta:
          $ref: '#/components/schemas/Meta'
        data:
          type: object
          properties:
            delivered:
              type: boolean
            summary:
              type: object
              properties:
                courier_code:
                  type: string
                courier_name:
                  type: string
                waybill_number:
                  type: string
                service_code:
                  type: string
                waybill_date:
                  type: string
                shipper_name:
                  type: string
                receiver_name:
                  type: string
                origin:
                  type: string
                destination:
                  type: string
                status:
                  type: string
            details:
              type: object
              properties:
                waybill_number:
                  type: string
                waybill_date:
                  type: string
                waybill_time:
                  type: string
                weight:
                  type: string
                origin:
                  type: string
                destination:
                  type: string
                shipper_name:
                  type: string
                shipper_address1:
                  type: string
                shipper_address2:
                  type: string
                shipper_address3:
                  type: string
                shipper_city:
                  type: string
                receiver_name:
                  type: string
                receiver_address1:
                  type: string
                receiver_address2:
                  type: string
                receiver_address3:
                  type: string
                receiver_city:
                  type: string
            delivery_status:
              type: object
              properties:
                status:
                  type: string
                pod_receiver:
                  type: string
                pod_date:
                  type: string
                pod_time:
                  type: string
            manifest:
              type: array
              items:
                type: object
                properties:
                  manifest_code:
                    type: string
                  manifest_description:
                    type: string
                  manifest_date:
                    type: string
                  manifest_time:
                    type: string
                  city_name:
                    type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: key
      description: Shipping Cost API key from the Collaborator dashboard (Developer -> Settings -> Api Key).
x-refined-from:
- komerce-shipping-cost-openapi.yml
- komerce-shipping-delivery-openapi.yml