Misc

List Supported Carriers

0calls
2 credits / call

Not sure which carriers the API supports? This endpoint returns the full directory.

GET
uapis.cn
/api/v1/misc/tracking/carriers

Overview

Returns every carrier currently supported, including each carrier’s standard code and Chinese display name.

Usage tips

  • Cache it: The list rarely changes. Call it once at app startup and cache locally.
  • Use cases: Useful for building carrier-pickers, dropdowns, and similar UI components.
  • Cache TTL: 24 hours or longer is reasonable.

Response

200 / OK

Success. Returns the list of supported carriers.

JSON
{
  // Carrier list.
  "carriers": [
    {
      // Carrier code. Use this value as the `carrier_code` parameter in tracking calls.
      "code": "zhongtong",
      // Carrier display name (Chinese).
      "name": "中通快递"
    }
  ],
  // Total number of supported carriers.
  "total": 13
}