Api documentation

Api documentation

Find Photos by tags

Photos
 
 
v2 v1
 
 

Sample Request

Find Photos by tag mitsubishi

Basic request

URL

https://api.edmunds.com/api/media/v2/photoset?tag=mitsubishi&api_key={api_key}&fmt=json

Response

{
    "photos": [
        {
            "title": "2015 Mitsubishi Mirage ES 4dr Hatchback Center Console",
            "category": "INTERIOR",
            "tags": [
                "mitsubishi",
                "mitsubishi-mirage",
                "2015-mitsubishi-mirage"
            ],
            "provider": "OEM",
            "sources": [
                {
                    "link": {
                        "rel": "self",
                        "href": "/mitsubishi/mirage/2015/oem/2015_mitsubishi_mirage_4dr-hatchback_es_cc_oem_1_98.jpg"
                    },
                    "extension": "JPG",
                    "size": {
                        "width": 98,
                        "height": 65
                    },
                },
                ...
                {
                    "link": {
                        "rel": "self",
                        "href": "/mitsubishi/mirage/2015/oem/2015_mitsubishi_mirage_4dr-hatchback_es_cc_oem_1_1280.jpg"
                    },
                    "extension": "JPG",
                    "size": {
                        "width": 1280,
                        "height": 854
                    }
                }
            ],
            "color": "Infrared",
            "submodels": [
                "Mirage Hatchback"
            ],
            "shotTypeAbbreviation": "CC"
        },
        ...
        {
            "title": "2015 Mitsubishi Mirage ES 4dr Hatchback Ignition Button Detail",
            "category": "INTERIOR",
            "tags": [
                "mitsubishi",
                "mitsubishi-mirage",
                "2015-mitsubishi-mirage"
            ],
            "provider": "OEM",
            "sources": [
                {
                    "link": {
                        "rel": "self",
                        "href": "/mitsubishi/mirage/2015/oem/2015_mitsubishi_mirage_4dr-hatchback_es_detail_oem_1_98.jpg"
                    },
                    "extension": "JPG",
                    "size": {
                        "width": 98,
                        "height": 65
                    }
                },
                ...
            ],
            "color": "Infrared",
            "submodels": [
                "Mirage Hatchback"
            ],
            "shotTypeAbbreviation": "DETAIL"
        }
    ],
    "photosCount": 8755,
    "links": [
        {
            "rel": "first",
            "href": "/api/media/v2/photoset?tag=mitsubishi&pagesize=10&pagenum=1&api_key={api_key}&fmt=json"
        },
        {
            "rel": "next",
            "href": "/api/media/v2/photoset?tag=mitsubishi&pagesize=10&pagenum=2&api_key={api_key}&fmt=json"
        },
        {
            "rel": "last",
            "href": "/api/media/v2/photoset?tag=mitsubishi&pagesize=10&pagenum=876&api_key={api_key}&fmt=json"
        }
    ]
}

Full request

URL

https://api.edmunds.com/api/media/v2/photoset?tag=mitsubishi&view=full&api_key={api key}

Response

{
    "photos": [
        {
            "title": "2015 Mitsubishi Mirage ES 4dr Hatchback Center Console",
            "category": "INTERIOR",
            "tags": [
                "mitsubishi",
                "mitsubishi-mirage",
                "2015-mitsubishi-mirage"
            ],
            "provider": "OEM",
            "uploadDate": 1402506091000,
            "sources": [
                {
                    "link": {
                        "rel": "self",
                        "href": "/mitsubishi/mirage/2015/oem/2015_mitsubishi_mirage_4dr-hatchback_es_cc_oem_1_98.jpg"
                    },
                    "extension": "JPG",
                    "size": {
                        "width": 98,
                        "height": 65
                    },
                },
                ...
                {
                    "link": {
                        "rel": "self",
                        "href": "/mitsubishi/mirage/2015/oem/2015_mitsubishi_mirage_4dr-hatchback_es_cc_oem_1_1280.jpg"
                    },
                    "extension": "JPG",
                    "size": {
                        "width": 1280,
                        "height": 854
                    }
                }
            ],
            "color": "Infrared",
            "submodels": [
                "Mirage Hatchback"
            ],
            "shotTypeAbbreviation": "CC",
            "vdpOrder": 1,
            "authors": [
                "Mitsubishi Motor Sales of America"
            ],
            "originalSize": {
                "width": 2400,
                "height": 1600
            }
        },
        ...
        {
            "title": "2015 Mitsubishi Mirage ES 4dr Hatchback Rear Interior",
            "category": "INTERIOR",
            "tags": [
                "mitsubishi",
                "mitsubishi-mirage",
                "2015-mitsubishi-mirage"
            ],
            "provider": "OEM",
            "uploadDate": 1402506193000,
            "sources": [
                {
                    "link": {
                        "rel": "self",
                        "href": "/mitsubishi/mirage/2015/oem/2015_mitsubishi_mirage_4dr-hatchback_es_ri_oem_1_98.jpg"
                    },
                    "extension": "JPG",
                    "size": {
                        "width": 98,
                        "height": 65
                    }
                },
                ...
            ],
            "color": "Infrared",
            "submodels": [
                "Mirage Hatchback"
            ],
            "shotTypeAbbreviation": "RI",
            "vdpOrder": 1,
            "authors": [
                "Mitsubishi Motor Sales of America"
            ],
            "originalSize": {
                "width": 2400,
                "height": 1600
            }
        }
    ],
    "photosCount": 8755,
    "links": [
        {
            "rel": "first",
            "href": "/api/media/v2/photoset?tag=mitsubishi&view=full&pagesize=10&pagenum=1&api_key={api_key}&fmt=json"
        },
        {
            "rel": "next",
            "href": "/api/media/v2/photoset?tag=mitsubishi&view=full&pagesize=10&pagenum=2&api_key={api_key}&fmt=json"
        },
        {
            "rel": "last",
            "href": "/api/media/v2/photoset?tag=mitsubishi&view=full&pagesize=10&pagenum=876&api_key={api_key}&fmt=json"
        }
    ]
}