Trackru API

По любым возникшим вопросам, касающимся Апи интеграции, пишите на нашу почту: [email protected]

Carriers 

This section describes the carrier related resources of the API.

URI Method Description
GET /carriers GET List all carriers
POST /carriers/detect POST Detect a carrier by tracking code

Detect a carrier by tracking code

https://api.trackru.ru/v1/carriers/detect

Headers

Returns a list of carriers that match the tracking code

  • Content-Type: application/json
    Api-Key: YOUR_API_KEY
  • Tips

    There will be a surcharge for using this API: 1 shipment balance for every 5 requests.

Parameters

Param Description
tracking_number The tracking code for which you are trying to find a carier. Required, E.g. RN123456789CN.

Request Body

  • {
    	"tracking_number": "RN123456789CN"
    }
    				
  • Response Body 200

    {
        "meta": {
            "code": 200,
            "type": "Success",
            "message": "Success"
        },
        "data": [{
            "name": "China post",
            "code": "china-post"
        }]
    }