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

List all carriers

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

Headers

Returns list of all available carriers.

Lang:en(English)

  • Content-Type: application/json
    Api-Key: YOUR_API_KEY
    Lang: en
    				
  • Response Body 200

                                
    {
        "meta": {
            "code": 200
        },
        "data": [
        {
            "name": "DHL",
            "code": "dhl",
            "phone": "1 800 225 5345",
            "homepage": "\/\/www.dhl.com\/",
            "type": "express",
            "picture": "//cdn.trackru.ru/images/icons/express/dhl.png"
        },
        {
            "name": "China post",
            "code": "china-post",
            "phone": "86 20 11185",
            "homepage": "\/\/intmail.183.com.cn\/",
            "type": "globalpost",
            "picture": "//cdn.trackru.ru/images/icons/express/companylogo/3010.jpg"
        },
        {
            "name": "Singapore Post",
            "code": "singapore-post",
            "phone": "0065 \/ 6841 2000",
            "homepage": "\/\/www.singpost.com\/",
            "type": "globalpost",
            "picture": "//cdn.trackru.ru/images/icons/express/companylogo/19131.jpg"
        },
        ...
        ]
    }