Your key's capabilities in one call: enabled features, allowed formats/resolutions/ratios/views/colors/brands, restrictions, and delivery info (CDN host + signed-URL TTL).
Request
curl "https://api.vehicleimagery.com/api/me" \
-H "x-api-key: YOUR_API_KEY" 200 · Key capabilities.
{
"features": {
"shadow": true,
"transparency": true,
"mirroring": true,
"grounding": true,
"getall": true,
"debug": false,
"fallbacks": true,
"watermark_forced": false
},
"allowed": {
"formats": [
"*"
],
"resolutions": [
"*"
],
"ratios": [
"*"
],
"views": [
"*"
],
"colors": [
"*"
],
"brands": [
"*"
]
},
"restrictions": {
"blocked_brands": [],
"year_range": null,
"test_mode": false
},
"delivery": {
"cdn": "cdn.vehicleimagery.com",
"signed_url_ttl_seconds": 604800
}
} 401 · Missing or invalid `x-api-key`.
{
"error": "Invalid API key"
} 403 · Plan restriction (feature, format or brand not allowed) or blocked request.
{
"error": "Mirroring is not allowed by your plan."
} 404 · No data for the requested path.
{
"error": "Brand 'Xyz' not found — check /api/brands for valid brands."
}