Wiki

New Case Case Status
Log In

Wiki

 
Mexico Auto Insurance»Vehicle API Examples
  • RSS Feed

Last modified on 11/20/2013 1:40 PM by User.

Tags:

Vehicle API Examples

Below is a list of example requests and responses.

/api/make_model.mhtml?type=power&vehicle_type=1&year=2009
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
{
	"vehicle_type": "1",
	"makes": [
		{
			"label": "Acura",
			"id": 403
		},
		{
			"label": "Alfa Romeo",
			"id": 546
		},
		{
			"label": "AMC",
			"id": 477
		},
		{
			"label": "Audi",
			"id": 419
		},
		{
			"label": "BMW",
			"id": 413
		},
		{
			"label": "Buick",
			"id": 387
		},
		...
	],
	"type": "power",
	"year": 2009
}
/api/make_model.mhtml?type=power&vehicle_type=1&year=2009&make=386
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
{
	"models": [
		{
			"label": "Accent",
			"id": 1670
		},
		{
			"label": "Accord",
			"id": 304
		},
		{
			"label": "Civic",
			"id": 305
		},
		...
	],
	"make": "386",
	"make_label": "Honda",
	"vehicle_type": "1",
	"type": "power",
	"year": 2009
}
/api/make_model.mhtml?type=power&vehicle_type=1&year=2009&make=386&model=765
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
{
	"make": "386",
	"make_label": "Honda",
	"vehicle_type": "1",
	"model": "765",
	"model_label": "CRV",
	"body_styles": [
		{
			"label": "SUV",
			"id": 3
		}
	],
	"type": "power",
	"year": 2009
}