| URI | Method | Description | 
|---|---|---|
| GET /carriers | GET | List all carriers | 
| POST /carriers/detect | POST | Detect a carrier by tracking code | 
Returns a list of carriers that match the tracking code
Content-Type: application/json
Api-Key: YOUR_API_KEY
                            | Param | Description | 
|---|---|
tracking_number | 
                                    
                                        The tracking code for which you are trying to find a carier.                                         
                                             Required, E.g.  RN123456789CN. | 
                                
{
	"tracking_number": "RN123456789CN"
}
				200{
    "meta": {
        "code": 200,
        "type": "Success",
        "message": "Success"
    },
    "data": [{
        "name": "China post",
        "code": "china-post"
    }]
}