Model Dates

Returns a date range of all MovinCool models given a model code.

Parameters

Parameter Examples

Sample parameter inputs are shown below.

https://api.movincool.entrinix.com/service/model-dates

Examples:

Results

This will return all of the makes in JSON format. The range field is the only one that should be passed back for any queries. Results are returned sorted by date range. Values of 999999 mean the present, since MovinCool has an open end-date for models.

Result Example

Sample result outputs are shown below.

{
	"code": "cl10",
	"count": ​4,
	"elapsed_time": "0.0258",
	"message": "Model date range results found.",
	"results": [
		{
			"from": "2011-02",
			"from_year": ​2011,
			"from_month": ​2,
			"to": "Present",
			"to_year": ​9999,
			"to_month": ​99,
			"range": "201102-999999"		
		},
		{
			"from": "2009-01",
			"from_year": ​2009,
			"from_month": ​1,
			"to": "2010-12",
			"to_year": ​2010,
			"to_month": ​12,
			"range": "200901-201012"		
		},
		{		
			"from": "2005-04",
			"from_year": ​2005,
			"from_month": ​4,
			"to": "2008-12",
			"to_year": ​2008,
			"to_month": ​12,
			"range": "200504-200812"		
		},
		{
			"from": "1993-06",
			"from_year": ​1993,
			"from_month": ​6,
			"to": "2005-03",
			"to_year": ​2005,
			"to_month": ​3,
			"range": "199306-200503"
		}
	],
	"send_param": "range",
	"status": "success"
}