Kurly Logistics Services (KLS) Delivery Tracking API

Shared delivery tracking (배송추적) — returns the processing state and accumulated tracking events for a waybill delivered by Kurly Nextmile, usable by both fulfillment and delivery-agency shippers. Nine documented tracking states, of which delivered and failed are terminal.

OpenAPI Specification

kurly-kls-delivery-tracking-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Kurly Logistics Services (KLS) Open API — Delivery Tracking (배송추적)
  version: 1.3.12
  description: Kurly Logistics Services (KLS) Open API lets contracted shipper clients (화주사) integrate their systems with
    Kurly's fulfillment (물류대행) and delivery-agency (배송대행) services. This document was reconstructed by API Evangelist from
    Kurly's own published API reference at https://developers.kurly.com — every path, method, summary and response status
    below is taken from that reference. Request/response schemas are rendered client-side on the provider's site and are NOT
    reproduced here; treat the referenced page (externalDocs) as authoritative for payloads.
  contact:
    email: logistics-dev@kurlycorp.com
    url: https://developers.kurly.com/docs/faq
  x-generated-by: api-evangelist enrichment pipeline
  x-generated: '2026-07-19'
  x-source: https://developers.kurly.com/docs/api
externalDocs:
  description: KLS Developer Center
  url: https://developers.kurly.com/
servers:
- url: https://{host}
  description: KLS Open API base host. Kurly does not publish the base host publicly; it is issued to contracted shippers
    together with clientId/secretKey after IP allowlisting.
  variables:
    host:
      default: kls.kurly.com
      description: Kurly Logistics Services host referenced in the KLS FAQ.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Access token issued by POST /auth/token using the clientId/secretKey pair Kurly issues after IP allowlist
        registration. Sent as `Authorization: Bearer {AccessToken}`.'
  schemas:
    Error:
      type: object
      description: KLS error envelope. Delivery-agency errors carry a `DA` domain prefix (e.g. DA60400, DA60404, DA60500)
        as of docs v1.3.8.
      properties:
        code:
          type: string
          description: KLS error code
        message:
          type: string
          description: Human readable error message
paths:
  /v1/couriers/{courier}/trackings/{invoiceNumber}:
    get:
      operationId: findDeliveryTracking
      summary: 배송 추적 조회
      tags:
      - Delivery Tracking (배송추적)
      externalDocs:
        description: KLS API reference
        url: https://developers.kurly.com/docs/api/%EB%B0%B0%EC%86%A1%EC%B6%94%EC%A0%81/%EB%B0%B0%EC%86%A1-%EC%B6%94%EC%A0%81-%EC%A1%B0%ED%9A%8C/
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
        '400':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Rate limit exceeded (added to all APIs in KLS docs v1.3.5)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      description: 운송장 번호로 배송 추적 이벤트를 조회합니다. 추적 이벤트가 없는 경우 currentStatus는 null로, trackingEvents는 빈 배열로 반환됩니다. 현재 KURLY(넥스트마일)
        택배사만 지원합니다. 3개월 이내의 정보만 조회 가능합니다.
      parameters:
      - name: courier
        in: path
        required: true
        schema:
          type: string
      - name: invoiceNumber
        in: path
        required: true
        schema:
          type: string
      security:
      - bearerAuth: []
security:
- bearerAuth: []