{"info":{"_postman_id":"56a4eeda-8226-4651-a542-b93345bf7ce6","name":"UVeye Public API v1","description":"

Introduction

\n

Allow 3rd-party access to UVeye's data.

\n

Documentation version: v1.2 — updated 2026-07-06. See the Changelog at the bottom of this description.

\n

Overview

\n

All data provided is confidential and may not be used in any way without explicit permission from UVeye.

\n

This documentation will explore the different types of requests that can be made to retrieve information from UVeye.

\n

Authentication
Most endpoints use a header key uveye-api-key. Generate a global key in the Global Keys tab of the UVeye Back Office and set it as uveye-api-key. The Merchandise endpoints use a separate credential sent as Authorization: Bearer <merchandise API key>, issued at onboarding.

\n

Environments
Notice that this API is for US organizations. Ensure that in the topbar of this page, ENVIRONMENT is set to Production-US. This displays all relevant URLs for sending requests.
base url for for dev environment is: https://api.uveye.dev/v1/

\n

Request & Response Structure:
Each endpoint has specific request parameters as detailed in the request-body schema below. Refer to the response-body schema table to see each returned parameter and its description.

\n

General Notes:
Detailed information on how to find the data needed is given on each request and response.

\n

Changelog

\n

v1.2 — 2026-07-06

\n\n

v1.1 — 2026-06-30

\n\n","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Introduction","slug":"introduction"},{"content":"Overview","slug":"overview"},{"content":"Changelog","slug":"changelog"}],"owner":"6788683","collectionId":"56a4eeda-8226-4651-a542-b93345bf7ce6","publishedId":"UzBqnQ9W","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-07-01T17:32:33.000Z"},"item":[{"name":"Merchandise","item":[{"name":"Submit inventory","id":"a805ae24-e683-2d1d-95e5-4c8d8b464a01","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"vehicles\": [\n {\n \"vin\": \"1G1ZD5ST7JF123456\",\n \"make\": \"Chevrolet\",\n \"model\": \"Malibu\",\n \"year\": 2024,\n \"color\": \"Silver\",\n \"body\": \"Sedan\",\n \"stockNumber\": \"ST-12345\",\n \"mileage\": 12500,\n \"type\": \"USED\",\n \"sellingPrice\": 21500\n }\n ]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}merchandise/inventory/vehicles","description":"

Submit your inventory. Push VINs + basic vehicle data; UVeye scans, renders multi-angle images, and pushes them back to your webhook.

\n

Auth: Authorization: Bearer — a distinct credential from the uveye-api-key used by the other endpoints, issued at onboarding.

\n

Required per vehicle: vin, make, model, year (integer 1900–2100).\nRecommended: color, body (improve rendered output).\nOptional (UI metadata only, no impact on images): stockNumber, trim, mileage, type (NEW/USED), sellingPrice, interiorColor, transmission, drivetrain, engine, fuelType, msrp, certified, photoCount, stockInDate (YYYY-MM-DD).

\n

Batch limit: ≤100 vehicles per request (more → 413). Resubmit your full active inventory periodically (e.g. every 4h); unchanged vehicles are no-ops (dedup by content hash).

\n

Response: 202 Accepted { received, requestId, count } — processed asynchronously; no per-VIN validation in the response (a malformed/missing-field VIN is excluded and simply never produces a webhook). Keep requestId for support.

\n

Errors: 400 (malformed body / missing required field), 401 (key missing/invalid/disabled/not authorized for merchandise), 413 (>100 vehicles).

\n

See the full Merchandise Integration Guide (Confluence) for the webhook + verification contract.

\n","urlObject":{"path":["inventory","vehicles"],"host":["{{base_url}}merchandise"],"query":[],"variable":[]}},"response":[{"id":"7e26f360-5e0c-7a10-608c-aee5ae2bf065","name":"202 Accepted","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"vehicles\": [\n {\n \"vin\": \"1G1ZD5ST7JF123456\",\n \"make\": \"Chevrolet\",\n \"model\": \"Malibu\",\n \"year\": 2024,\n \"color\": \"Silver\",\n \"body\": \"Sedan\",\n \"stockNumber\": \"ST-12345\",\n \"mileage\": 12500,\n \"type\": \"USED\",\n \"sellingPrice\": 21500\n }\n ]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}merchandise/inventory/vehicles","description":"**Submit your inventory.** Push VINs + basic vehicle data; UVeye scans, renders multi-angle images, and pushes them back to your webhook.\n\n**Auth:** `Authorization: Bearer ` — a distinct credential from the `uveye-api-key` used by the other endpoints, issued at onboarding.\n\n**Required per vehicle:** `vin`, `make`, `model`, `year` (integer 1900–2100).\n**Recommended:** `color`, `body` (improve rendered output).\n**Optional (UI metadata only, no impact on images):** `stockNumber`, `trim`, `mileage`, `type` (NEW/USED), `sellingPrice`, `interiorColor`, `transmission`, `drivetrain`, `engine`, `fuelType`, `msrp`, `certified`, `photoCount`, `stockInDate` (YYYY-MM-DD).\n\n**Batch limit:** ≤100 vehicles per request (more → `413`). Resubmit your full active inventory periodically (e.g. every 4h); unchanged vehicles are no-ops (dedup by content hash).\n\n**Response:** `202 Accepted` `{ received, requestId, count }` — processed asynchronously; no per-VIN validation in the response (a malformed/missing-field VIN is excluded and simply never produces a webhook). Keep `requestId` for support.\n\n**Errors:** `400` (malformed body / missing required field), `401` (key missing/invalid/disabled/not authorized for merchandise), `413` (>100 vehicles).\n\nSee the full **Merchandise Integration Guide** (Confluence) for the webhook + verification contract."},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n \"received\": true,\n \"requestId\": \"f1a3b2c5-8e9d-4a6f-9c8e-1d2b3a4e5f6c\",\n \"count\": 78\n}"}],"_postman_id":"a805ae24-e683-2d1d-95e5-4c8d8b464a01"},{"name":"Mark vehicles sold","id":"c91a607e-9758-4ba0-6862-03ffa48dc58b","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"vins\": [\"1G1ZD5ST7JF123456\", \"1HGCM82633A004352\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}merchandise/inventory/sold","description":"

Mark vehicles sold so UVeye stops merchandising them. Call this explicitly when a VIN sells — v1 does not auto-detect sold vehicles from their absence in a resubmitted inventory.

\n

Auth: Authorization: Bearer . Same batch limit (≤100) as Submit inventory.

\n

Response: 202 Accepted { received, requestId, count }, processed asynchronously.\nErrors: 400 (missing/empty vins or a non-string entry), 401, 413 (>100).

\n

To bring a sold VIN back, resubmit it via Submit inventory.

\n","urlObject":{"path":["inventory","sold"],"host":["{{base_url}}merchandise"],"query":[],"variable":[]}},"response":[{"id":"9e00231b-226a-59b3-94f2-47dc26968e7c","name":"202 Accepted","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"vins\": [\"1G1ZD5ST7JF123456\", \"1HGCM82633A004352\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}merchandise/inventory/sold","description":"**Mark vehicles sold** so UVeye stops merchandising them. Call this explicitly when a VIN sells — v1 does not auto-detect sold vehicles from their absence in a resubmitted inventory.\n\n**Auth:** `Authorization: Bearer `. Same batch limit (≤100) as Submit inventory.\n\n**Response:** `202 Accepted` `{ received, requestId, count }`, processed asynchronously.\n**Errors:** `400` (missing/empty `vins` or a non-string entry), `401`, `413` (>100).\n\nTo bring a sold VIN back, resubmit it via **Submit inventory**."},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n \"received\": true,\n \"requestId\": \"a7c9e1d3-4b6f-4c2a-8e1d-9f3b2a4c6d8e\",\n \"count\": 2\n}"}],"_postman_id":"c91a607e-9758-4ba0-6862-03ffa48dc58b"},{"name":"Merchandise webhook (delivered to your endpoint)","id":"a0484eb1-be14-fd4e-d250-3e21687a44dc","request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer "},{"key":"X-UVeye-Signature","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"vin\": \"1G1ZD5ST7JF123456\",\n \"publishedAt\": \"2026-05-12T10:34:00Z\",\n \"images\": [\n \"https:///.../front-left.jpg\",\n \"https:///.../front-right.jpg\",\n \"https:///.../rear-left.jpg\",\n \"https:///.../rear-right.jpg\"\n ]\n}","options":{"raw":{"language":"json"}}},"url":"","description":"

This is delivered BY UVeye TO your configured webhook URL — it is not a request you send. It is documented here so you can see the payload contract. Set to your own endpoint if you want to mock-send it.

\n

When a VIN's merchandise images are ready, UVeye POSTs to your URL with:

\n
    \n
  • Authorization: Bearer <customer-bearer-token> — the token UVeye was given at onboarding; match it to authenticate UVeye.
  • \n
  • X-UVeye-Signature — an HS256 JWT binding the body (body_sha256); verify it for tamper detection + a delivery_id idempotency key (optional).
  • \n
\n

Acknowledge with 2xx. Non-2xx triggers retry (up to 5 retries / 6 attempts, same delivery_id).

\n

Minimum body shown (default). A detailed format (opt-in at onboarding) adds publishStatus, coverImage, imageCount, per-image { url, category }, and modules. See the full Merchandise Integration Guide (Confluence) for JWT claims and verification code.

\n","urlObject":{"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"a0484eb1-be14-fd4e-d250-3e21687a44dc"}],"id":"44cae7f0-4a83-10db-6ecc-402848460c4d","_postman_id":"44cae7f0-4a83-10db-6ecc-402848460c4d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"uveye-api-key"},{"key":"value","value":"{{uveye_api_key}}"}]},"isInherited":true,"source":{"_postman_id":"56a4eeda-8226-4651-a542-b93345bf7ce6","id":"56a4eeda-8226-4651-a542-b93345bf7ce6","name":"UVeye Public API v1","type":"collection"}}},{"name":"Public Link","id":"1d2c7199-fc25-4912-b902-458afd3337e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}"}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\", // or use \"\" / \"\"\n \"plainMode\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{public_link_url_suffix}}","description":"

General Description:

\n

Inspection Public Link
To get the public link an identifier must be specified. There are 3 possible identifiers that can be used: inspectionId, vin, and uniqueId. There are request and response examples for each of the possible identifiers.

\n

There are 2 types of inspection public link: regular or plain. You can find detailed information for both in the request body schema.

\n

Note: Public inspection links expire 30 days after they are generated. The exact expiry timestamp is returned in the expirationDate field of the response.

\n

Request-Body schema:
In the request body an identifier must be chosen to get the inspection. inspectionId, vin, uniqueId. Review the examples provided for this request to see all possible methods to achieve the response wanted.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescriptionrequired\\optional
uniqueIdstringthe barcode of the vehicle (if given), can be found on the scan pagerequired (1 of 3 options, can be replaced by \"inspectionId\"/\"vin\")
vinstringa unique id of the vehicle provided by the manufacturer, can be found under vehicle info on the inspection pagerequired (1 of 3 options, can be replaced by \"inspectionId\"/\"uniqueId\")
inspectionIdstringa unique id of the inspection provided by the UVeye system, can be found in the scan page urlrequired (1 of 3 options, can be replaced by \"uniqueId\"/\"vin\")
plainModebooleanset to true to get a plain version of the public linkoptional (false by default)
\n
Response-Body Schema:
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescription
urlstringreturns public link to the inspection
isHeliosModuleInvalidbooleanreturns true if the undercarriage inspection image was not uploaded successfully
isArtemisModuleInvalidbooleanreturns true if any tire inspection images were not uploaded successfully
isAtlasModuleInvalidbooleanreturns true if the exterior inspection images were not uploaded successfully
isScanInvalidbooleanreturns true if any of the inspection modules is invalid
expirationDateDate formatreturns the date that a generated public link will no longer be available (30 days after creation)
inspectionDateDate formatreturns the date the inspection was scanned
\n
Possible response statuses:
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
status numberexpected messagedescription
200 (OK)--
400 (Bad Request)Request failed-
400 (Bad Request)Missing search criteria**vin**, **inspectionId**, or **uniqueId** must be provided in the request body to get a specific inspection
401API key is disabledRefresh the API key in the backoffice and use the updated key in the header of the request
401Invalid API keyThe API key you entered is invalid. Refresh the API key in the backoffice and use the updated key in the header of the request
404 (Not Found)Inspection not foundThe inspection expired OR there is a mistake in the **vin**, **inspectionId**, or **uniqueId** that was entered.
405 (Method Not Allowed)unknown method, please use POSTyou are using a different method then \"POST\"
\n
","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"uveye-api-key"},{"key":"value","value":"{{uveye_api_key}}"}]},"isInherited":true,"source":{"_postman_id":"56a4eeda-8226-4651-a542-b93345bf7ce6","id":"56a4eeda-8226-4651-a542-b93345bf7ce6","name":"UVeye Public API v1","type":"collection"}},"urlObject":{"host":["{{base_url}}{{public_link_url_suffix}}"],"query":[],"variable":[]}},"response":[{"id":"ef44df38-6001-4444-a554-88a5c3080e01","name":"Public Link by Inspection ID","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\",\n \"plainMode\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{public_link_url_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200,"enabled":true},{"key":"cache-control","value":"private","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"function-execution-id","value":"iajdqkl6vfdj","enabled":true},{"key":"server","value":"Google Frontend","enabled":true},{"key":"strict-transport-security","value":"max-age=31556926; includeSubDomains; preload","enabled":true},{"key":"x-cloud-trace-context","value":"3a15590c84254f9ba53a564470f7cd9c;o=1","enabled":true},{"key":"x-country-code","value":"IL","enabled":true},{"key":"accept-ranges","value":"bytes","enabled":true},{"key":"date","value":"Wed, 01 Jul 2026 10:04:29 GMT","enabled":true},{"key":"x-served-by","value":"cache-bgy-lime1210048-BGY","enabled":true},{"key":"x-cache","value":"MISS","enabled":true},{"key":"x-cache-hits","value":"0","enabled":true},{"key":"x-timer","value":"S1782900268.898436,VS0,VE1384","enabled":true},{"key":"vary","value":"Origin,cookie,need-authorization, x-fh-requested-host, accept-encoding","enabled":true},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400","enabled":true},{"key":"content-length","value":"273","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"url\": \"https://staging.uvpub.uveye.app/inspection/yCaXdSwKIrPfLPnwMtbs\",\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"expirationDate\": \"2026-07-31T06:47:08.852Z\",\n \"inspectionDate\": \"2025-12-01T23:44:09.000Z\"\n}"},{"id":"a8ea477e-ed7b-4832-b202-9fd3506548ab","name":"Public Link by VIN","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"vin\": \"\",\n \"plainMode\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{base_url}}{{public_link_url_suffix}}?uveye-api-key={{uveye_api_key}}","host":["{{base_url}}{{public_link_url_suffix}}"],"query":[{"key":"uveye-api-key","value":"{{uveye_api_key}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200,"enabled":true},{"key":"cache-control","value":"private","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"function-execution-id","value":"iajdxtdnh2dh","enabled":true},{"key":"server","value":"Google Frontend","enabled":true},{"key":"strict-transport-security","value":"max-age=31556926; includeSubDomains; preload","enabled":true},{"key":"x-cloud-trace-context","value":"62f62ce688893690646c2b022796647c;o=1","enabled":true},{"key":"x-country-code","value":"IL","enabled":true},{"key":"accept-ranges","value":"bytes","enabled":true},{"key":"date","value":"Wed, 01 Jul 2026 10:05:04 GMT","enabled":true},{"key":"x-served-by","value":"cache-bgy-lime1210048-BGY","enabled":true},{"key":"x-cache","value":"MISS","enabled":true},{"key":"x-cache-hits","value":"0","enabled":true},{"key":"x-timer","value":"S1782900304.882317,VS0,VE544","enabled":true},{"key":"vary","value":"Origin,cookie,need-authorization, x-fh-requested-host, accept-encoding","enabled":true},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400","enabled":true},{"key":"content-length","value":"273","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"url\": \"https://staging.uvpub.uveye.app/inspection/yCaXdSwKIrPfLPnwMtbs\",\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"expirationDate\": \"2026-07-31T06:47:08.852Z\",\n \"inspectionDate\": \"2025-12-01T23:44:09.000Z\"\n}"},{"id":"0b9b461a-ee59-4902-a2f3-cabd7c253e2f","name":"Public Link by Unique ID","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n \"uniqueId\": \"\",\n \"plainMode\": false\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{base_url}}{{public_link_url_suffix}}?uveye-api-key={{uveye_api_key}}","host":["{{base_url}}{{public_link_url_suffix}}"],"query":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"content-length","value":"266","enabled":true},{"key":"etag","value":"W/\"10a-GZSn63Xsi6rf0MK0R9eUS7ao8cI\"","enabled":true},{"key":"date","value":"Sun, 12 Feb 2023 08:17:04 GMT","enabled":true},{"key":"connection","value":"keep-alive","enabled":true},{"key":"keep-alive","value":"timeout=5","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"url\": \"https://staging.uvpub.uveye.app/inspection/yCaXdSwKIrPfLPnwMtbs\",\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"expirationDate\": \"2026-07-31T06:47:08.852Z\",\n \"inspectionDate\": \"2025-12-01T23:44:09.000Z\"\n}"}],"_postman_id":"1d2c7199-fc25-4912-b902-458afd3337e5"},{"name":"Inspection Details","id":"3178030d-31a9-4354-8346-da14430ee110","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}"}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\", // or use \"\" / \"\" / \"\"\n \"alertsOnly\": false,\n \"showTreadPolygons\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{inspection_url_suffix}}","description":"

General Description:

\n

Vehicle Inspection Data
To get inspection data an inspection or vehicle identifier must be specified. There are three possible identifiers : `vin`, `inspectionId`, and `licensePlate`.

\n

The response of this request contains many nested objects. Each child object is listed with a description.

\n
Request-Body Schema:
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parameter nametypedescriptionrequired\\optional
vinstringa unique id of the vehicle found in the inspection page under vehicle inforequired (1 of 4 options, can be replaced by inspectionId or licensePlate)
inspectionIdstringa unique id of the inspection found in each scan page URL.required (1 of 4 options, can be replaced by vin or licensePlate)
licensePlatestringa unique id of the vehicle found in the inspection page under vehicle inforequired (1 of 4 options, can be replaced by inspectionId or vin)
uniqueIdstringa unique id of the vehicle referring to the barcode of the vehicle (if given)required (1 of 4 options, can be replaced by vin, inspectionId, or licensePlate)
alertsOnlybooleanwhen set to true the response body returns only alert detections and hides warning detectionsoptional (false by default)
showTreadPolygonsbooleanwhen set to true will show tread polygons coordinatesoptional (false by default)
\n

Response-Body Schema:

\n

General response:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parameter nametypedescription
inspectionIdstringa unique id of the inspection
artemisObjectArtemis object contains information about the vehicle's tires condition, this object schema has detailed information below
heliosObjectHelios object contains information about the vehicle's undercarriage condition, this object schema has detailed information below
atlasObjectAtlas object contains information about the vehicle's exterior condition, this object schema has detailed information below
apolloObjectApollo object contains information about the vehicle's interior condition, this object schema has detailed information below
overviewImagestringURL to the overview image of the vehicle
coverImagestringURL to the cover image of the vehicle
organizationIdstringa unique id of the organization that scanned and generated the vehicle inspection
organizationDisplayNamestringthe name of the organization that scanned and generated the vehicle inspection
siteIdstringa unique id of the site that scanned and generated the vehicle inspection
siteDisplayNamestringthe name of the site that scanned and generated the vehicle inspection
inspectedAtstring (Date format)date and time the inspection occurred
licensePlatestringlicense plate of the scanned vehicle
licensePlateUsStateAbbreviationstringthe two-letter state code of the vehicle as it appears on the license plate
vinstringa unique id of the vehicle provided by the vehicle manufacturer
uniqueIdstringa unique id of the vehicle referring to the barcode of the vehicle (if given)
isArtemisModuleInvalidbooleanreturns true if any tire inspection images were not uploaded successfully
isAtlasModuleInvalidbooleanreturns true if the exterior inspection images were not uploaded successfully
isHeliosModuleInvalidbooleanreturns true if the undercarriage inspection image was not uploaded successfully
isScanInvalidbooleanreturns true if any of the inspection modules is invalid
yearstringthe year of the vehicle provided by the manufacturer
numberOfCylindersnumberthe number of engine cylinders provided by the manufacturer (returns null if not available)
fuelTypestringthe fuel type of the vehicle provided by the manufacturer
bodyTypestringthe body type of the vehicle provided by the manufacturer
makestringthe vehicle make provided by the manfacturer
modelstringthe vehicle model provided by the manfacturer
trimstringthe vehicle trim level (when available)
cabSubTrimstringthe cab sub-trim, for applicable body types (when available)
bedSubTrimstringthe bed sub-trim, for applicable body types (when available)
doorCountnumberthe number of doors of the vehicle provided by the manufacturer (returns null if not available)
exteriorColorstringthe exterior color of the vehicle provided by the manufacturer
engineDisplacementstringthe engine displacement of the vehicle provided by the manufacturer
isDriveablebooleanreturns true if the vehicle was determined to be driveable
spareTireInfostringspare tire information (when available)
keyTypestringthe vehicle's key type (when available)
merchandiseVehicleDataobjectresolved vehicle data (inventory-first); present only once resolved
\n

Artemis (Tires), Helios (Undercarriage) & Atlas (Exterior) Objects Schemas:

\n

Artemis: The Artemis (tires) Object has 4 properties for the 4 tires positions:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
propertytype
leftFrontobject
leftRearobject
rightFrontobject
rightRearobject
\n

Each property (tire position) is also an object - describes the tire's condition.

\n

In the following schemas there is detailed information about each Tire-Position Object:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
treadImagestringURL to the tread image of a specific tire
wallImagestringURL to the tire-wall image of a specific tire
treadImageWithGroovesstringURL to the tread image with the detected grooves overlaid
croppedWallImagestringURL to a cropped tire-wall image (returned only when cropping is enabled for the API key)
croppedTreadImagestringURL to a cropped tread image (returned only when cropping is enabled for the API key)
treadDetectionsObjectcontaints all damage detections that where found on the tires treads (schema and information for this object can be found below)
wallDetectionsObjectwallDetections object holds all damage detections that where found on the tires walls (schema and information for this object can be found below)
brandstringreturns the brand of the tire
dotstringreturns the four digits describing the manufacture date of the tire (formated as WWYY where WW is the week number (1-52) and YY is the last two digits of the year)
tireAgestringreturns the tire age in years calculated from the dot.
pressurestringreturns “Normal” or “Low” depending on the state of the tire pressure detected
sizestringtire’s size specifications as shown on the sidewall of the tire
speedAndLoadstringtire’s speed and load specifications as shown on the sidewall of the tire
unevenTreadsWearDetectedbooleanindicates whether the tire has uneven tread wear
wornTireDetectedstringreturns “Normal Wear”, “Marginal”, or “Critical” depending on the state of the tread wear of the tire
isMountingCorrectbooleanreturns true if the tire is mounted so that the “outside” marking is on the outer side of the tire sidewall
isAllSeasonPresentbooleanreturns true if the “m+s” marking is on the tire sidewall
note: “m+s” stands for “mud and snow”, indicating that the tire is able to drive on snow and mud
isSpeedAndLoadNormalbooleanindicated whether the tire has a speed & load mark.
isMismatchTirebooleanreturns true if this tire does not match the others on the vehicle
groovesObject[]contains information about the tire tread's grooves, each groove is an object which holds information about the groove condition (schema and information for this object can be found below)
\n

Tire-position sub-objects:

\n
    \n
  1. treadDetections & wallDetection:
  2. \n
\n

treadDetections & wallDetections are arrays of detection objects, each tread\\wall detection has the following schema:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
idstringunique identifier of the detection
rectangleObjectthe detection's rectangle highlighting the location of the detection on the vehicle as shown in the scan. rectangle Object has the following schema: {height: number (float), width: number (float), top: number (float), left: number (float)} all values are Relative to the image dimensions
typestringdescribes what is marked in the detection (what kind of damage or anomaly was found on the tread)

*see all possible detections types list below.
isHighSeveritybooleanIndicates that the marked damage or anomaly has high severity
isMediumSeveritybooleanIndicates that the marked damage or anomaly has medium severity
croppedImagestringURL to a cropped image of the detection (returned only when cropping is enabled for the API key)
widthInMmnumberwidth of the detection in millimeters (when available)
heightInMmnumberheight of the detection in millimeters (when available)
widthInInchnumberwidth of the detection in inches (when available)
heightInInchnumberheight of the detection in inches (when available)
\n

Artemis treadDetections & wallDetection- all possible detection types:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
detection-typedescription
TireWearindicates a worn tire
TireMissingLugNutCoverindicates a missing lug nut cover from a vehicle’s tire-rim
TireBrokenBeltindicates a broken inner belt on a vehicle’s tire
TireBulgeindicates a bulge on a vehicle’s tire
TireDamageindicates a general damage to the vehicle's tire
TireForeignObjectindicates a foreign object on a vehicle’s tire
TireMissingLugNutindicates a missing lug nut from a vehicle’s tire-rim
TireRimDamageindicates a general damage to a vehicle’s tire-rim
\n

2. grooves:

\n

grooves is an Array of Objects, each object represents a single groove of the tire's tread.
the following schema describes each groove object:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
depthMmnumber (float)groove depth in millimeters (Indication to how worn the grove is)
depth32ndOfInchstringgroove depth in 32nd of an Inch (Indication to how worn the grove is)
isCriticalbooleanreturns true if the groove depth is shallow enough to necessitate for immediate tire replacement
isMarginalbooleanreturns true if the groove depth is shallow enough to recommend tire replacement however it is not immediately needed
isNormalbooleanreturns true if the groove depth is deep enough to continue using the tire
polygonnumber[][]Polygon is a matrix that describes the groove outlines. each array (matrix row) in the parent array holds: [float, float] describing [xValue, yValue] of a point from the entire polygon
\n

Helios:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
undercarriageImagestringURL to the image of the undercarriage of the vehicle
detectionsObject[]an array of objects, each object holds a detection object (described in the Helios sub-objects section)
\n

Helios sub-objects (Undercarriage):

\n

detections: is an array of object, each object describes one anomaly or damage that was detected on the vehicle's undercarriage.
the following schema describes each detection object:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
idstringunique identifier of the detection
rectangleObjectthe detection's rectangle highlighting the location of the detection on the vehicle as shown in the scan. rectangle Object has the following schema: {height: number (float), width: number (float), top: number (float), left: number (float)} all values are Relative values to the image dimensions
typestringdescribes what is marked in the detection (what kind of damage or anomaly was found)

*see all possible detections types list below.
isHighSeveritybooleanIndicates that the marked damage or anomaly has high severity
isMediumSeveritybooleanIndicates that the marked damage or anomaly has medium severity
croppedImagestringURL to a cropped image of the detection (returned only when cropping is enabled for the API key)
widthInMmnumberwidth of the detection in millimeters (when available)
heightInMmnumberheight of the detection in millimeters (when available)
widthInInchnumberwidth of the detection in inches (when available)
heightInInchnumberheight of the detection in inches (when available)
\n

all Helios detections possible types:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
detection-typedescription
UndercarriageBrokenExhaustindicates a broken exhaust on the vehicle’s undercarriage
UndercarriageBrokenShieldindicates a broken heat shield on the vehicle’s undercarriage
UndercarriageDamageindicates a general damage to the vehicle’s undercarriage
UndercarriageForeignObjectindicates a foreign object on the vehicle’s undercarriage
UndercarriageLeakindicates a leaking part of the vehicle’s undercarriage
UndercarriageMissingCatalyticConverterindicates a missing catalytic convertor from the vehicle’s undercarriage
UndercarriageRustindicates rust on the vehicle’s undercarriage
\n

Atlas:
Atlas object describes the vehicle's exterior condition. and has the following schema:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
detectionsObject[]array of all detections found in the inspection. Each detection object holds information about the detection itself (described in detail in the Atlas sub-objects section)
coverImagesObjectobject that holds 4 URL links to 4 cover images captured by the Atlas system as different angles (described in detail in the Atlas sub-objects section)
animatedFramesObjectobject containing images used for generating GIF animations of the sides and top of a vehicle driving through the system (described in detail in the Atlas sub-objects section)
\n

Atlas sub-objects (Exterior):

\n
    \n
  1. detections:
  2. \n
\n

detections property is an array of objects, each object describes the anomaly or damage that was detected on the vehicle's exterior body panels.
The following schema describes each detection object:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
idstringa unique id of the detection.
imagestringURL link to the image on which the detection is marked on
bodyPartstringthe vehicle's body part where the detection is located
rectangleObjectthe detection's rectangle highlighting the location of the detection on the vehicle as shown in the scan. rectangle Object has the following schema: {height: number (float), width: number (float), top: number (float), left: number (float)} all values are Relative values to the image dimensions
typestringdescribes what is marked in the detection (what kind of damage or anomaly was found)
isHighSeveritybooleanIndicates that the marked damage or anomaly has high severity
isMediumSeveritybooleanIndicates that the marked damage or anomaly has medium severity
bodyPartDisplayNamestringhuman-readable name of the body part
bodyPartCustomerMappingIdstringthe customer-specific mapping id for the body part (when configured)
damageTypeCustomerMappingIdstringthe customer-specific mapping id for the damage type (when configured)
croppedImagestringURL to a cropped image of the detection (returned only when cropping is enabled for the API key)
widthInMmnumberwidth of the detection in millimeters (when available)
heightInMmnumberheight of the detection in millimeters (when available)
lengthInMmnumberlength of the detection in millimeters, for scratches (when available)
widthInInchnumberwidth of the detection in inches (when available)
heightInInchnumberheight of the detection in inches (when available)
lengthInInchnumberlength of the detection in inches, for scratches (when available)
\n

all Atlas detections possible types:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
detection-typedescription
BodyHailDamageindicates hail damage on the vehicle’s body
BodyChipindicates a chipping body part
BodyDamageindicates a general damage on the vehicle’s body
BodyDentindicates a dent on the vehicle’s body
BodyPaintchipindicates a paint chip on the vehicle’s body
BodyScratchindicates a scratch on the vehicle’s body
\n

all Atlas body-part possible types:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Body Part TypeBody Part Type
BumperFrontBumperRear
DoorFrontLeftDoorFrontRight
DoorRearLeftDoorRearRight
CameraRearFuelCap
FenderFrontFenderRear
GrilleHood
HeadLightLeftHeadLightRight
LicensePlateFrontLicensePlateRear
MirrorLeftMirrorRight
MirrorCoverLeftMirrorCoverRight
RoofTrunk
TailLightLeftTailLightRight
TurnSignalLeftTurnSignalRight
WindowFrontLeftWindowFrontRight
WindowRearLeftWindowRearRight
WindshieldGeneralBody
FogLightLeftFogLightRight
ReflectorLightLeftReflectorLightRight
SymbolFrontSymbolRear
TailPipeAntenna
SunroofChargingCap
DoorHandleBackLeftDoorHandleBackRight
DoorHandleFrontLeftDoorHandleFrontRight
FenderFrontLeftFenderFrontRight
FenderRearLeftFenderRearRight
FrontWheelLeftFrontWheelRight
RearWheelLeftRearWheelRight
HoodPlasticTipRoofRack
RoofRackRightRoofRackLeft
SideWindowWindowFrameLeft
WindowFrameRight
\n

2. coverImages:

\n

coverImages object has 4 properties, each property links to an image of the vehicle from a different angle.

\n

The following schema describes each angle-object:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
leftFrontstringURL link to the vehicle image from \"left-front\" angle
rightFrontstringURL link to the vehicle image from \"right-front\" angle
leftRearstringURL link to the vehicle image from \"left-rear\" angle
rightRearstringURL link to the vehicle image from \"right-rear\" angle
\n

3. animatedFrames:

\n

animatedFrames object has 3 properties for 3 angles of the vehicle, each property holds an array of URL links to images from a specific camera angle.

\n

animatedFrames object is used to generate a GIF animation of the vehicle. the following schema describes the different angles:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
leftstring[]an array of image-URLs showing the left side of the vehicle
topstring[]an array of image-URLs showing the top side of the vehicle
rightstring[]an array of image-URLs showing the right side of the vehicle
\n

Apollo:
Apollo object describes the vehicle's interior condition and has the following schema:
(*note that it's only available if you use the Apollo mobile application)

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
apolloStatusstringdescribes the status of the interior condition data.
*See the list of possible values and their meanings described below.
apolloImagesObjectObject contains interior images links.
(described in detail in the Apollo sub-objects section)
apolloInformationObjectObject contains the obd data and vehicle's engine sound
apolloDamagesObject[]an array of objects containing the information for apollo damages (described in detail in the Apollo sub-objects section)
\n

apolloStatus possible values:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
valuedescription
emptyIndicates that there is no any interior data available
acquisitionStartedIndicates that the vehicle's interior data is being processed & uploaded (still not all data avaliable)
imagesReadyIndicates that the vehicle's interior data is ready and all images have been uploaded
\n

Apollo sub-objects (Interior):

\n
    \n
  1. apolloImages:
  2. \n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
interiorImagestringA panoramic 360° interior image of the vehicle.
odometerImagestringImage of the vehicle's odometer.
engineImagestringImage of the engine (under the vehicle's hood).
dashboardImagestringImage of the vehicle interior dashboard.
keysPictureImagestringImage of the vehicle's keys.
spareTireImagestringImage of the vehicle's spare tire.
vinStickerImagestringImage of the vehicle's VIN (Vehicle Identification Number) sticker.
radioSystemImagestringImage of the vehicle's radio or entertainment system.
navigationSystemImagestringImage of the vehicle's navigation system.
tireDoorJamStickerImagestringImage of the tire specification sticker located in the door jamb.
emissionStickerImagestringImage of the vehicle's emission sticker.
openedGloveBoxImagestringImage of the vehicle's glove box in the opened state.
rearSeatsDriverSideViewImagestringImage showing the rear seats from the driver's side perspective.
rearSeatsPassengerSideViewImagestringImage showing the rear seats from the passenger's side perspective.
trunkImagestringImage of the vehicle's trunk.
vinQRCodeImagestringImage of the QR code associated with the vehicle's VIN.
exteriorFrontPerspectiveImagestringImage of the vehicle's front from a wide perspective.
exteriorFrontEmblemImagestringClose-up image of the vehicle's front emblem.
exteriorFrontRightPerspectiveImagestringImage of the vehicle's front right side perspective.
exteriorRightPerspectiveImagestringImage of the vehicle's right side perspective.
exteriorRearRightPerspectiveImagestringImage of the vehicle's rear right side perspective.
exteriorRearPerspectiveImagestringImage of the vehicle's rear perspective.
exteriorRearEmblemImagestringClose-up image of the vehicle's rear emblem.
exteriorRearLeftPerspectiveImagestringImage of the vehicle's rear left side perspective.
exteriorLeftPerspectiveImagestringImage of the vehicle's left side perspective.
exteriorFrontLeftPerspectiveImagestringImage of the vehicle's front left side perspective.
exteriorTrimEmblemImagestringClose-up image of the vehicle's trim or model emblem.
exteriorDriverSideTurnedWheelProfileImagestringImage of the driver's side profile with the front wheel turned.
exteriorHeadlightViewImagestringClose-up image of the vehicle's headlights.
backseatOptionsPanelImagestringImage of the panel showing options for the backseat.
driverFrontSeatImagestringImage of the driver's front seat.
passengerFrontSeatImagestringImage of the passenger's front seat.
driverDoorControlsImagestringImage of the controls located on the driver's door.
shifterImagestringImage of the vehicle's gear shifter.
lightingControlPanelImagestringImage of the vehicle's lighting control panel.
dashboardPanelRearSeatViewImagestringImage of the dashboard panel from the rear seat's perspective.
openedDriverDoorImagestringImage of the vehicle with the driver's door opened.
reverseCameraImagestringImage of the vehicle's reverse camera display.
dashboardPanelDriverSeatViewImagestringImage of the dashboard panel from the driver's seat perspective.
instrumentPanelImagestringImage of the vehicle's instrument panel.
climateControlPanelImagestringImage of the vehicle's climate control panel.
engineStartButtonImagestringClose-up image of the vehicle's engine start button.
steeringWheelControlImagestringImage of the vehicle's steering wheel with controls.
centerConsoleStorageImagestringImage of the storage compartment in the vehicle's center console.
sunroofImagestringImage of the vehicle's sunroof.
birdsEyeViewImagestringImage showing a bird's eye view of the vehicle.
dashboardPanelPassengerSeatViewImagestringImage of the dashboard panel from the passenger seat's perspective.
driverDoorSpeakerImagestringImage of the speaker located in the driver's door.
\n

2. apolloInformation:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
obdDataObjectObject contains the OBD data retrieved from the vehicle (described in detail in the next table below)
mileageObjectObject contains the mileage data retrieved from the vehicle
numberOfKeysnumberthe number of keys provided for the vehicle
interiorColorstringthe vehicle's interior color (when available)
interiorTypestringthe vehicle's interior material/type (when available)
hasHeadrestsbooleanwhether headrests are present (when available)
hasThirdRowSeatingbooleanwhether the vehicle has third-row seating (when available)
isBioHazardbooleanwhether a biohazard was detected in the vehicle interior (when available)
\n

2-obdData:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
vinstringthe vin of the vehicle (a unique identifier) recived from the obd
protocolstringthe OBD protocol used by the vehicle
*See the list of all supported protocols below
troubleCodesObject[]array of objects, each object contains information about a certain issue that was found by the OBD.
(described in detail below)
\n

2-obdData: list of supported OBD protocols:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
OBD supported protocolsmost common use
ISO_9141_2Used in EU, Chrysler & Asian cars in 2000-04
ISO_14230_4_KWPThe Keyword Protocol 2000 was a common protocol for 2003+ cars in e.g. Asia
ISO_14230_4_KWP_FASTThe Keyword Protocol 2000 was a common protocol for 2003+ cars in e.g. Asia
ISO_15765_4_CANMandatory in US cars since 2008 and is today used in the vast majority of cars
ISO_15765_4_CAN_BMandatory in US cars since 2008 and is today used in the vast majority of cars
ISO_15765_4_CAN_CMandatory in US cars since 2008 and is today used in the vast majority of cars
ISO_15765_4_CAN_DMandatory in US cars since 2008 and is today used in the vast majority of cars
SAE_J1850_PWMUsed mostly in older Ford cars
SAE_J1850_VPWUsed mostly in older GM cars
\n

2-obdData-troubleCodes:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
codestringa fixed string indicating about a certain issue that was found by the OBD
descriptionstringdescribing the issue that the code indicates on. usually including what is the issue and where was it found.
isPendingbooleanindicates that the issue was found more then 1 time.
isPermanentbooleanindicates that a techinician checked the vehicle and approved that it is an actual issue.
\n

3. apolloDamage

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
idstringa unique id of the apollo detection
typestringdescribes what is marked in the detection (what kind of damage or anomaly was found)
categorystringindicates the category on which the detection was found, either interior or exterior
bodyPartstringthe vehicle's body part where the detection is located
imagestringURL link to the image on which the detection is marked on
rectangleObjectthe detection's rectangle highlighting the location of the detection on the vehicle as shown in the scan. rectangle Object has the following schema: {height: number (float), width: number (float), top: number (float), left: number (float)} all values are Relative values to the image dimensions
\n

mileage:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
property nametypedescription
unitsstringa fixed string indicating the mileage unit which could be
'MI' = miles,
'KM' = kilometers,
'HR' = hours,
valuenumberthe mileage number of the vehicle
\n

Possible response statuses:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
status numberexpected messagedescription
200 (OK)--
400 (Bad Request)Request failed-
400 (Bad Request)Missing search criteria`**vin**`, `**inspectionId**`, or `**uniqueId**` must be provided in the request body to get a specific inspection
401API key is disabledRefresh the API key in the backoffice and use the updated key in the header of the request
401Invalid API keyThe API key you entered is invalid. Refresh the API key in the backoffice and use the updated key in the header of the request
404 (Not Found)Inspection not foundThe inspection expired OR there is a mistake in the `**vin**`, `**inspectionId**`, or `**uniqueId**` that was entered.
405 (Method Not Allowed)unknown method, please use POSTyou are using a different method then \"POST\"
\n
","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"uveye-api-key"},{"key":"value","value":"{{uveye_api_key}}"}]},"isInherited":true,"source":{"_postman_id":"56a4eeda-8226-4651-a542-b93345bf7ce6","id":"56a4eeda-8226-4651-a542-b93345bf7ce6","name":"UVeye Public API v1","type":"collection"}},"urlObject":{"host":["{{base_url}}{{inspection_url_suffix}}"],"query":[],"variable":[]}},"response":[{"id":"55cb6412-4fb3-4e1b-b517-18732fbc9c77","name":"Inspection Details by Inspection ID","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\",\n \"alertsOnly\": false, \n \"showTreadPolygons\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{inspection_url_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200,"enabled":true},{"key":"cache-control","value":"private","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"function-execution-id","value":"95fqi4pksuzu","enabled":true},{"key":"server","value":"Google Frontend","enabled":true},{"key":"strict-transport-security","value":"max-age=31556926; includeSubDomains; preload","enabled":true},{"key":"x-cloud-trace-context","value":"0d055620aeafa42d8e5cc57e52a74be4;o=1","enabled":true},{"key":"x-country-code","value":"IL","enabled":true},{"key":"accept-ranges","value":"bytes","enabled":true},{"key":"date","value":"Wed, 01 Jul 2026 06:39:55 GMT","enabled":true},{"key":"x-served-by","value":"cache-mrs1050084-MRS","enabled":true},{"key":"x-cache","value":"MISS","enabled":true},{"key":"x-cache-hits","value":"0","enabled":true},{"key":"x-timer","value":"S1782887992.481140,VS0,VE2717","enabled":true},{"key":"vary","value":"Origin,cookie,need-authorization, x-fh-requested-host, accept-encoding","enabled":true},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400","enabled":true},{"key":"content-length","value":"4240","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspectionId\": \"8b14a050-713c-4cb5-bbea-4eed7e05a376\",\n \"artemis\": {\n \"leftFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=WGP6HmH74NVV2U9DIyGk\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=biyzj84gqGtf0cEL48FQ\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"leftRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=hDkAkn9Uwm0eOwum4DUO\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=oM5zL0ztwFYvd8ikqwBN\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=boYhKvRao57Cb0lmCSCT\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=Jis7NFgxkaFwFbXfDzIv\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=IXjyBMmDP9JyDVTpyDQN\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=d0hsklrrquyCoXF6CnB1\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n }\n },\n \"helios\": {\n \"undercarriageImage\": \"https://staging.api.uveye.app/v1/image?key=OG7kRrzYXNby8xEmmzFc\",\n \"detections\": []\n },\n \"atlas\": {\n \"detections\": [],\n \"coverImages\": {\n \"leftFront\": \"\",\n \"rightFront\": \"\",\n \"leftRear\": \"\",\n \"rightRear\": \"\"\n },\n \"animatedFrames\": {\n \"left\": [\n \"https://staging.api.uveye.app/v1/image?key=d1VMfKboj7RP9zIECrJP\",\n \"https://staging.api.uveye.app/v1/image?key=DzCqseYc3eD7dy68PSvT\"\n ],\n \"top\": [\n \"https://staging.api.uveye.app/v1/image?key=03lRIemHCADHmmZvMwlM\",\n \"https://staging.api.uveye.app/v1/image?key=cR7KydHigOnEoLUW73o5\"\n ],\n \"right\": [\n \"https://staging.api.uveye.app/v1/image?key=SrCZGNaqUHMIHM92wlFd\",\n \"https://staging.api.uveye.app/v1/image?key=P0EWc6G49YXtlsIm7uZL\"\n ]\n }\n },\n \"overviewImage\": \"\",\n \"coverImage\": \"\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"inspectedAt\": \"2025-12-01T23:44:09.000Z\",\n \"licensePlate\": \"DZ58SE\",\n \"licensePlateUsStateAbbreviation\": \"FL\",\n \"vin\": \"3N1AB8CV9SY330347\",\n \"year\": \"2025\",\n \"numberOfCylinders\": null,\n \"fuelType\": \"Gasoline\",\n \"bodyType\": \"Sedan/Saloon\",\n \"make\": \"NISSAN\",\n \"model\": \"Sentra\",\n \"trim\": \"SV\",\n \"cabSubTrim\": \"\",\n \"bedSubTrim\": \"\",\n \"doorCount\": 4,\n \"exteriorColor\": \"Black\",\n \"engineDisplacement\": \"2000\",\n \"uniqueId\": \"\",\n \"spareTireInfo\": \"\",\n \"keyType\": \"\",\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false\n}"},{"id":"c203c045-9766-4825-9084-411754990f35","name":"Inspection Details by License Plate","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"licensePlate\": \"\",\n \"alertsOnly\": true, \n \"showTreadPolygons\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{inspection_url_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200,"enabled":true},{"key":"cache-control","value":"private","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"function-execution-id","value":"hrx89iww8af5","enabled":true},{"key":"server","value":"Google Frontend","enabled":true},{"key":"strict-transport-security","value":"max-age=31556926; includeSubDomains; preload","enabled":true},{"key":"x-cloud-trace-context","value":"469d2fcc292aec9f6ce78ea6c909f37c;o=1","enabled":true},{"key":"x-country-code","value":"IL","enabled":true},{"key":"accept-ranges","value":"bytes","enabled":true},{"key":"date","value":"Wed, 01 Jul 2026 10:03:15 GMT","enabled":true},{"key":"x-served-by","value":"cache-bgy-lime1210036-BGY","enabled":true},{"key":"x-cache","value":"MISS","enabled":true},{"key":"x-cache-hits","value":"0","enabled":true},{"key":"x-timer","value":"S1782900164.716443,VS0,VE31572","enabled":true},{"key":"vary","value":"Origin,cookie,need-authorization, x-fh-requested-host, accept-encoding","enabled":true},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400","enabled":true},{"key":"content-length","value":"4240","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspectionId\": \"8b14a050-713c-4cb5-bbea-4eed7e05a376\",\n \"artemis\": {\n \"leftFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=WGP6HmH74NVV2U9DIyGk\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=biyzj84gqGtf0cEL48FQ\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"leftRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=hDkAkn9Uwm0eOwum4DUO\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=oM5zL0ztwFYvd8ikqwBN\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=boYhKvRao57Cb0lmCSCT\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=Jis7NFgxkaFwFbXfDzIv\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=IXjyBMmDP9JyDVTpyDQN\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=d0hsklrrquyCoXF6CnB1\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n }\n },\n \"helios\": {\n \"undercarriageImage\": \"https://staging.api.uveye.app/v1/image?key=OG7kRrzYXNby8xEmmzFc\",\n \"detections\": []\n },\n \"atlas\": {\n \"detections\": [],\n \"coverImages\": {\n \"leftFront\": \"\",\n \"rightFront\": \"\",\n \"leftRear\": \"\",\n \"rightRear\": \"\"\n },\n \"animatedFrames\": {\n \"left\": [\n \"https://staging.api.uveye.app/v1/image?key=d1VMfKboj7RP9zIECrJP\",\n \"https://staging.api.uveye.app/v1/image?key=DzCqseYc3eD7dy68PSvT\"\n ],\n \"top\": [\n \"https://staging.api.uveye.app/v1/image?key=03lRIemHCADHmmZvMwlM\",\n \"https://staging.api.uveye.app/v1/image?key=cR7KydHigOnEoLUW73o5\"\n ],\n \"right\": [\n \"https://staging.api.uveye.app/v1/image?key=SrCZGNaqUHMIHM92wlFd\",\n \"https://staging.api.uveye.app/v1/image?key=P0EWc6G49YXtlsIm7uZL\"\n ]\n }\n },\n \"overviewImage\": \"\",\n \"coverImage\": \"\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"inspectedAt\": \"2025-12-01T23:44:09.000Z\",\n \"licensePlate\": \"DZ58SE\",\n \"licensePlateUsStateAbbreviation\": \"FL\",\n \"vin\": \"3N1AB8CV9SY330347\",\n \"year\": \"2025\",\n \"numberOfCylinders\": null,\n \"fuelType\": \"Gasoline\",\n \"bodyType\": \"Sedan/Saloon\",\n \"make\": \"NISSAN\",\n \"model\": \"Sentra\",\n \"trim\": \"SV\",\n \"cabSubTrim\": \"\",\n \"bedSubTrim\": \"\",\n \"doorCount\": 4,\n \"exteriorColor\": \"Black\",\n \"engineDisplacement\": \"2000\",\n \"uniqueId\": \"\",\n \"spareTireInfo\": \"\",\n \"keyType\": \"\",\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false\n}"},{"id":"6a5e625e-de3a-4094-b922-d11c437ed7ae","name":"Inspection Details by VIN","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"vin\": \"\",\n \"alertsOnly\": false, \n \"showTreadPolygons\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{inspection_url_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"content-length","value":"7561","enabled":true},{"key":"etag","value":"W/\"1d89-5chIWHRoyUJWwHArAnWI4Difc7w\"","enabled":true},{"key":"date","value":"Mon, 13 Feb 2023 13:59:18 GMT","enabled":true},{"key":"connection","value":"keep-alive","enabled":true},{"key":"keep-alive","value":"timeout=5","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspectionId\": \"8b14a050-713c-4cb5-bbea-4eed7e05a376\",\n \"artemis\": {\n \"leftFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=WGP6HmH74NVV2U9DIyGk\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=biyzj84gqGtf0cEL48FQ\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"leftRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=hDkAkn9Uwm0eOwum4DUO\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=oM5zL0ztwFYvd8ikqwBN\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=boYhKvRao57Cb0lmCSCT\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=Jis7NFgxkaFwFbXfDzIv\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=IXjyBMmDP9JyDVTpyDQN\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=d0hsklrrquyCoXF6CnB1\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n }\n },\n \"helios\": {\n \"undercarriageImage\": \"https://staging.api.uveye.app/v1/image?key=OG7kRrzYXNby8xEmmzFc\",\n \"detections\": []\n },\n \"atlas\": {\n \"detections\": [],\n \"coverImages\": {\n \"leftFront\": \"\",\n \"rightFront\": \"\",\n \"leftRear\": \"\",\n \"rightRear\": \"\"\n },\n \"animatedFrames\": {\n \"left\": [\n \"https://staging.api.uveye.app/v1/image?key=d1VMfKboj7RP9zIECrJP\",\n \"https://staging.api.uveye.app/v1/image?key=DzCqseYc3eD7dy68PSvT\"\n ],\n \"top\": [\n \"https://staging.api.uveye.app/v1/image?key=03lRIemHCADHmmZvMwlM\",\n \"https://staging.api.uveye.app/v1/image?key=cR7KydHigOnEoLUW73o5\"\n ],\n \"right\": [\n \"https://staging.api.uveye.app/v1/image?key=SrCZGNaqUHMIHM92wlFd\",\n \"https://staging.api.uveye.app/v1/image?key=P0EWc6G49YXtlsIm7uZL\"\n ]\n }\n },\n \"overviewImage\": \"\",\n \"coverImage\": \"\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"inspectedAt\": \"2025-12-01T23:44:09.000Z\",\n \"licensePlate\": \"DZ58SE\",\n \"licensePlateUsStateAbbreviation\": \"FL\",\n \"vin\": \"3N1AB8CV9SY330347\",\n \"year\": \"2025\",\n \"numberOfCylinders\": null,\n \"fuelType\": \"Gasoline\",\n \"bodyType\": \"Sedan/Saloon\",\n \"make\": \"NISSAN\",\n \"model\": \"Sentra\",\n \"trim\": \"SV\",\n \"cabSubTrim\": \"\",\n \"bedSubTrim\": \"\",\n \"doorCount\": 4,\n \"exteriorColor\": \"Black\",\n \"engineDisplacement\": \"2000\",\n \"uniqueId\": \"\",\n \"spareTireInfo\": \"\",\n \"keyType\": \"\",\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false\n}"},{"id":"276cab9c-73df-4933-9a20-da242d1704a3","name":"Inspection Details","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\",\n \"alertsOnly\": false, \n \"showTreadPolygons\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{inspection_url_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"content-length","value":"9300","enabled":true},{"key":"etag","value":"W/\"2454-YgJT3MYix9P8wrgh5hwAgXRR7ic\"","enabled":true},{"key":"date","value":"Fri, 05 Apr 2024 05:16:46 GMT","enabled":true},{"key":"connection","value":"keep-alive","enabled":true},{"key":"keep-alive","value":"timeout=5","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspectionId\": \"8b14a050-713c-4cb5-bbea-4eed7e05a376\",\n \"artemis\": {\n \"leftFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=WGP6HmH74NVV2U9DIyGk\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=biyzj84gqGtf0cEL48FQ\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"leftRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=hDkAkn9Uwm0eOwum4DUO\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=oM5zL0ztwFYvd8ikqwBN\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=boYhKvRao57Cb0lmCSCT\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=Jis7NFgxkaFwFbXfDzIv\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=IXjyBMmDP9JyDVTpyDQN\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=d0hsklrrquyCoXF6CnB1\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n }\n },\n \"helios\": {\n \"undercarriageImage\": \"https://staging.api.uveye.app/v1/image?key=OG7kRrzYXNby8xEmmzFc\",\n \"detections\": []\n },\n \"atlas\": {\n \"detections\": [],\n \"coverImages\": {\n \"leftFront\": \"\",\n \"rightFront\": \"\",\n \"leftRear\": \"\",\n \"rightRear\": \"\"\n },\n \"animatedFrames\": {\n \"left\": [\n \"https://staging.api.uveye.app/v1/image?key=d1VMfKboj7RP9zIECrJP\",\n \"https://staging.api.uveye.app/v1/image?key=DzCqseYc3eD7dy68PSvT\"\n ],\n \"top\": [\n \"https://staging.api.uveye.app/v1/image?key=03lRIemHCADHmmZvMwlM\",\n \"https://staging.api.uveye.app/v1/image?key=cR7KydHigOnEoLUW73o5\"\n ],\n \"right\": [\n \"https://staging.api.uveye.app/v1/image?key=SrCZGNaqUHMIHM92wlFd\",\n \"https://staging.api.uveye.app/v1/image?key=P0EWc6G49YXtlsIm7uZL\"\n ]\n }\n },\n \"overviewImage\": \"\",\n \"coverImage\": \"\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"inspectedAt\": \"2025-12-01T23:44:09.000Z\",\n \"licensePlate\": \"DZ58SE\",\n \"licensePlateUsStateAbbreviation\": \"FL\",\n \"vin\": \"3N1AB8CV9SY330347\",\n \"year\": \"2025\",\n \"numberOfCylinders\": null,\n \"fuelType\": \"Gasoline\",\n \"bodyType\": \"Sedan/Saloon\",\n \"make\": \"NISSAN\",\n \"model\": \"Sentra\",\n \"trim\": \"SV\",\n \"cabSubTrim\": \"\",\n \"bedSubTrim\": \"\",\n \"doorCount\": 4,\n \"exteriorColor\": \"Black\",\n \"engineDisplacement\": \"2000\",\n \"uniqueId\": \"\",\n \"spareTireInfo\": \"\",\n \"keyType\": \"\",\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false\n}"},{"id":"5b611cdb-6c0c-49ed-adfa-0e1bcc256a0f","name":"Inspection Details","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text","disabled":true}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\",\n \"alertsOnly\": false, \n \"showTreadPolygons\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{inspection_url_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Content-Length","value":"13233","enabled":true},{"key":"Cache-Control","value":"private","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Function-Execution-Id","value":"rmxfq9h09jec","enabled":true},{"key":"Server","value":"Google Frontend","enabled":true},{"key":"Strict-Transport-Security","value":"max-age=31556926","enabled":true},{"key":"X-Cloud-Trace-Context","value":"68e660ae549b4dee0ca485f371539804;o=1","enabled":true},{"key":"X-Country-Code","value":"IL","enabled":true},{"key":"Accept-Ranges","value":"bytes","enabled":true},{"key":"Date","value":"Sun, 14 Apr 2024 12:05:29 GMT","enabled":true},{"key":"X-Served-By","value":"cache-mrs10523-MRS","enabled":true},{"key":"X-Cache","value":"MISS","enabled":true},{"key":"X-Cache-Hits","value":"0","enabled":true},{"key":"X-Timer","value":"S1713096324.315870,VS0,VE4944","enabled":true},{"key":"Vary","value":"Origin,cookie,need-authorization, x-fh-requested-host, accept-encoding","enabled":true},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspectionId\": \"8b14a050-713c-4cb5-bbea-4eed7e05a376\",\n \"artemis\": {\n \"leftFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=WGP6HmH74NVV2U9DIyGk\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=biyzj84gqGtf0cEL48FQ\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"leftRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=hDkAkn9Uwm0eOwum4DUO\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=oM5zL0ztwFYvd8ikqwBN\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightFront\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=boYhKvRao57Cb0lmCSCT\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=Jis7NFgxkaFwFbXfDzIv\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n },\n \"rightRear\": {\n \"treadImage\": \"https://staging.api.uveye.app/v1/image?key=IXjyBMmDP9JyDVTpyDQN\",\n \"wallImage\": \"https://staging.api.uveye.app/v1/image?key=d0hsklrrquyCoXF6CnB1\",\n \"treadDetections\": [],\n \"wallDetections\": [],\n \"brand\": \"\",\n \"dot\": \"\",\n \"tireAge\": \"\",\n \"pressure\": \"\",\n \"size\": \"\",\n \"speedAndLoad\": \"\",\n \"unevenTreadsWearDetected\": null,\n \"wornTireDetected\": \"\",\n \"isMountingCorrect\": null,\n \"isAllSeasonPresent\": null,\n \"isSpeedAndLoadNormal\": null,\n \"grooves\": []\n }\n },\n \"helios\": {\n \"undercarriageImage\": \"https://staging.api.uveye.app/v1/image?key=OG7kRrzYXNby8xEmmzFc\",\n \"detections\": []\n },\n \"atlas\": {\n \"detections\": [],\n \"coverImages\": {\n \"leftFront\": \"\",\n \"rightFront\": \"\",\n \"leftRear\": \"\",\n \"rightRear\": \"\"\n },\n \"animatedFrames\": {\n \"left\": [\n \"https://staging.api.uveye.app/v1/image?key=d1VMfKboj7RP9zIECrJP\",\n \"https://staging.api.uveye.app/v1/image?key=DzCqseYc3eD7dy68PSvT\"\n ],\n \"top\": [\n \"https://staging.api.uveye.app/v1/image?key=03lRIemHCADHmmZvMwlM\",\n \"https://staging.api.uveye.app/v1/image?key=cR7KydHigOnEoLUW73o5\"\n ],\n \"right\": [\n \"https://staging.api.uveye.app/v1/image?key=SrCZGNaqUHMIHM92wlFd\",\n \"https://staging.api.uveye.app/v1/image?key=P0EWc6G49YXtlsIm7uZL\"\n ]\n }\n },\n \"overviewImage\": \"\",\n \"coverImage\": \"\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"inspectedAt\": \"2025-12-01T23:44:09.000Z\",\n \"licensePlate\": \"DZ58SE\",\n \"licensePlateUsStateAbbreviation\": \"FL\",\n \"vin\": \"3N1AB8CV9SY330347\",\n \"year\": \"2025\",\n \"numberOfCylinders\": null,\n \"fuelType\": \"Gasoline\",\n \"bodyType\": \"Sedan/Saloon\",\n \"make\": \"NISSAN\",\n \"model\": \"Sentra\",\n \"trim\": \"SV\",\n \"cabSubTrim\": \"\",\n \"bedSubTrim\": \"\",\n \"doorCount\": 4,\n \"exteriorColor\": \"Black\",\n \"engineDisplacement\": \"2000\",\n \"uniqueId\": \"\",\n \"spareTireInfo\": \"\",\n \"keyType\": \"\",\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false\n}"}],"_postman_id":"3178030d-31a9-4354-8346-da14430ee110"},{"name":"Latest Inspections","id":"6c697fe6-cb37-493e-b9d9-ebd6d5760fcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}"}],"body":{"mode":"raw","raw":"{\n \"siteId\": \"\", // or use \"\" / \"\"\n \"amountOfDaysForSearch\": 100 // or \"amountOfHoursForSearch\" / \"amountOfInspections\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{latest_inspections_suffix}}","description":"

General Description:

\n

Latest Inspections
Returns a list of the most recent inspections for a site or site group, so you can discover the inspectionId values to use with the Inspection Details request.

\n

Request-Body schema:
Provide one location filter (siteId, siteGroupId, or vin) and one result-window filter (amountOfDaysForSearch, amountOfHoursForSearch, or amountOfInspections).

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescriptionrequired\\optional
siteIdstringthe id of the site to search inspections forrequired (1 of 3 location filters, can be replaced by \"siteGroupId\"/\"vin\")
siteGroupIdstringthe id of the site group to search inspections for (also known as BAC for GM dealers)required (1 of 3 location filters, can be replaced by \"siteId\"/\"vin\")
vinstringsearch the latest inspections for a specific vehicle by VINrequired (1 of 3 location filters, can be replaced by \"siteId\"/\"siteGroupId\")
amountOfDaysForSearchnumber (int)return inspections from the last X daysrequired (1 of 3 window filters)
amountOfHoursForSearchnumber (int)return inspections from the last X hoursrequired (1 of 3 window filters)
amountOfInspectionsnumber (int)return the most recent X inspectionsrequired (1 of 3 window filters)
\n
Response-Body Schema:
\n

The response contains a single property inspections, an array of objects with the following fields:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescription
inspectionIdstringunique id of the inspection — use it with the Inspection Details request
siteIdstringid of the site where the inspection took place
organizationIdstringid of the organization the site belongs to
inspectedAtDate formatdate and time the inspection was scanned
vinstringvehicle VIN
yearstringvehicle model year (may be empty when unavailable)
modelstringvehicle model
makestringvehicle make
licensePlatestringvehicle license plate
licensePlateUsStateAbbreviationstringUS state abbreviation of the license plate
merchandiseVehicleDataobjectresolved vehicle data (inventory-first). Present only once resolved
hasHeliosbooleantrue if the inspection includes an undercarriage (Helios) scan
hasArtemisbooleantrue if the inspection includes a tire (Artemis) scan
hasAtlasbooleantrue if the inspection includes an exterior (Atlas) scan
isHeliosModuleInvalidbooleantrue if the undercarriage module is invalid
isArtemisModuleInvalidbooleantrue if the tire module is invalid
isAtlasModuleInvalidbooleantrue if the exterior module is invalid
isScanInvalidbooleantrue if any of the inspection modules is invalid
overviewImagestringURL of the inspection overview image
\n
Possible response statuses:
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
status numberexpected messagedescription
200 (OK)--
400 (Bad Request)Request failed-
400 (Bad Request)Missing search criteriaa location filter (siteId, siteGroupId, or vin) must be provided
401API key is disabledRefresh the API key in the backoffice and use the updated key in the header of the request
401Invalid API keyThe API key you entered is invalid. Refresh the API key in the backoffice and use the updated key in the header of the request
404 (Not Found)Inspection not foundno inspections match the given filters
405 (Method Not Allowed)unknown method, please use POSTyou are using a different method then \"POST\"
\n
","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"uveye-api-key"},{"key":"value","value":"{{uveye_api_key}}"}]},"isInherited":true,"source":{"_postman_id":"56a4eeda-8226-4651-a542-b93345bf7ce6","id":"56a4eeda-8226-4651-a542-b93345bf7ce6","name":"UVeye Public API v1","type":"collection"}},"urlObject":{"host":["{{base_url}}{{latest_inspections_suffix}}"],"query":[],"variable":[]}},"response":[{"id":"3d2aeb6f-a5f4-495b-ae19-30378fba9ac7","name":"Latest Inspections by Days (Site ID)","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"siteId\": \"\",\n \"amountOfDaysForSearch\": 100\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{latest_inspections_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"content-length","value":"1788","enabled":true},{"key":"etag","value":"W/\"6fc-2R5hiL6nuM8bsekMD/BKZsVbljI\"","enabled":true},{"key":"date","value":"Sun, 12 Feb 2023 09:33:45 GMT","enabled":true},{"key":"connection","value":"keep-alive","enabled":true},{"key":"keep-alive","value":"timeout=5","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspections\": [\n {\n \"inspectionId\": \"7fd27d5c-8314-41bc-88d0-90270beda9dd\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-25T16:03:22.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F7fd27d5c-8314-41bc-88d0-90270beda9dd%2FMVuMTPzmy4X8W3GQIEYJ%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"5731c587-4d44-499b-9ff7-35d34ecbf072\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-23T15:16:02.000Z\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"licensePlate\": \"F778FM\",\n \"year\": \"2018\",\n \"model\": \"F-150\",\n \"make\": \"FORD\",\n \"licensePlateUsStateAbbreviation\": \"UT\",\n \"merchandiseVehicleData\": {\n \"make\": \"FORD\",\n \"model\": \"F-150\",\n \"year\": \"2018\",\n \"color\": \"Gray\",\n \"body\": \"Pickup\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"source\": {\n \"make\": \"INSPECTION\",\n \"model\": \"INSPECTION\",\n \"year\": \"INSPECTION\",\n \"color\": \"INSPECTION\",\n \"body\": \"INSPECTION\",\n \"vin\": \"INSPECTION\"\n }\n },\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F5731c587-4d44-499b-9ff7-35d34ecbf072%2FYiuNWH3eaUhCx7n4hLnF%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"49eb6431-10bd-433c-9021-26cac6e4cf3f\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-05-26T12:29:41.000Z\",\n \"vin\": \"5NPD84LF2LH583356\",\n \"licensePlate\": \"\",\n \"year\": \"2020\",\n \"model\": \"Elantra\",\n \"make\": \"HYUNDAI\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"merchandiseVehicleData\": {\n \"make\": \"Hyundai\",\n \"model\": \"Elantra\",\n \"year\": \"2020\",\n \"body\": \"Minivan\",\n \"vin\": \"5NPD84LF2LH583356\",\n \"source\": {\n \"make\": \"INVENTORY\",\n \"model\": \"INVENTORY\",\n \"year\": \"INVENTORY\",\n \"body\": \"INVENTORY\",\n \"vin\": \"INSPECTION\",\n \"color\": \"INVENTORY\"\n },\n \"color\": \"WHITE\"\n },\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F49eb6431-10bd-433c-9021-26cac6e4cf3f%2FckQQq3itAWRI9FKahjQ9%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"73ce1372-aa09-40c0-b9f0-4aa9732811bf\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-15T17:58:05.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"hasHelios\": false,\n \"hasArtemis\": false,\n \"hasAtlas\": false,\n \"isArtemisModuleInvalid\": true,\n \"isAtlasModuleInvalid\": true,\n \"isHeliosModuleInvalid\": true,\n \"isScanInvalid\": true,\n \"isRentalLite\": false,\n \"overviewImage\": \"\"\n }\n ]\n}"},{"id":"f35323f7-c4ca-4861-b1ff-19e54dcb500c","name":"Latest Inspections by Hours (Site ID)","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"siteId\": \"\",\n \"amountOfHoursForSearch\": 9999999\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{latest_inspections_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"content-length","value":"1788","enabled":true},{"key":"etag","value":"W/\"6fc-2R5hiL6nuM8bsekMD/BKZsVbljI\"","enabled":true},{"key":"date","value":"Sun, 12 Feb 2023 09:34:28 GMT","enabled":true},{"key":"connection","value":"keep-alive","enabled":true},{"key":"keep-alive","value":"timeout=5","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspections\": [\n {\n \"inspectionId\": \"7fd27d5c-8314-41bc-88d0-90270beda9dd\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-25T16:03:22.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F7fd27d5c-8314-41bc-88d0-90270beda9dd%2FMVuMTPzmy4X8W3GQIEYJ%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"5731c587-4d44-499b-9ff7-35d34ecbf072\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-23T15:16:02.000Z\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"licensePlate\": \"F778FM\",\n \"year\": \"2018\",\n \"model\": \"F-150\",\n \"make\": \"FORD\",\n \"licensePlateUsStateAbbreviation\": \"UT\",\n \"merchandiseVehicleData\": {\n \"make\": \"FORD\",\n \"model\": \"F-150\",\n \"year\": \"2018\",\n \"color\": \"Gray\",\n \"body\": \"Pickup\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"source\": {\n \"make\": \"INSPECTION\",\n \"model\": \"INSPECTION\",\n \"year\": \"INSPECTION\",\n \"color\": \"INSPECTION\",\n \"body\": \"INSPECTION\",\n \"vin\": \"INSPECTION\"\n }\n },\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F5731c587-4d44-499b-9ff7-35d34ecbf072%2FYiuNWH3eaUhCx7n4hLnF%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"49eb6431-10bd-433c-9021-26cac6e4cf3f\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-05-26T12:29:41.000Z\",\n \"vin\": \"5NPD84LF2LH583356\",\n \"licensePlate\": \"\",\n \"year\": \"2020\",\n \"model\": \"Elantra\",\n \"make\": \"HYUNDAI\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"merchandiseVehicleData\": {\n \"make\": \"Hyundai\",\n \"model\": \"Elantra\",\n \"year\": \"2020\",\n \"body\": \"Minivan\",\n \"vin\": \"5NPD84LF2LH583356\",\n \"source\": {\n \"make\": \"INVENTORY\",\n \"model\": \"INVENTORY\",\n \"year\": \"INVENTORY\",\n \"body\": \"INVENTORY\",\n \"vin\": \"INSPECTION\",\n \"color\": \"INVENTORY\"\n },\n \"color\": \"WHITE\"\n },\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F49eb6431-10bd-433c-9021-26cac6e4cf3f%2FckQQq3itAWRI9FKahjQ9%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"73ce1372-aa09-40c0-b9f0-4aa9732811bf\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-15T17:58:05.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"hasHelios\": false,\n \"hasArtemis\": false,\n \"hasAtlas\": false,\n \"isArtemisModuleInvalid\": true,\n \"isAtlasModuleInvalid\": true,\n \"isHeliosModuleInvalid\": true,\n \"isScanInvalid\": true,\n \"isRentalLite\": false,\n \"overviewImage\": \"\"\n }\n ]\n}"},{"id":"c73a1439-0afe-4ab3-9fdf-c67f72da4342","name":"Latest Inspections by Amount (Site ID)","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"siteId\": \"\",\n \"amountOfInspections\": 100\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{latest_inspections_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"content-length","value":"1788","enabled":true},{"key":"etag","value":"W/\"6fc-2R5hiL6nuM8bsekMD/BKZsVbljI\"","enabled":true},{"key":"date","value":"Sun, 12 Feb 2023 09:34:58 GMT","enabled":true},{"key":"connection","value":"keep-alive","enabled":true},{"key":"keep-alive","value":"timeout=5","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspections\": [\n {\n \"inspectionId\": \"7fd27d5c-8314-41bc-88d0-90270beda9dd\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-25T16:03:22.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F7fd27d5c-8314-41bc-88d0-90270beda9dd%2FMVuMTPzmy4X8W3GQIEYJ%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"5731c587-4d44-499b-9ff7-35d34ecbf072\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-23T15:16:02.000Z\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"licensePlate\": \"F778FM\",\n \"year\": \"2018\",\n \"model\": \"F-150\",\n \"make\": \"FORD\",\n \"licensePlateUsStateAbbreviation\": \"UT\",\n \"merchandiseVehicleData\": {\n \"make\": \"FORD\",\n \"model\": \"F-150\",\n \"year\": \"2018\",\n \"color\": \"Gray\",\n \"body\": \"Pickup\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"source\": {\n \"make\": \"INSPECTION\",\n \"model\": \"INSPECTION\",\n \"year\": \"INSPECTION\",\n \"color\": \"INSPECTION\",\n \"body\": \"INSPECTION\",\n \"vin\": \"INSPECTION\"\n }\n },\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F5731c587-4d44-499b-9ff7-35d34ecbf072%2FYiuNWH3eaUhCx7n4hLnF%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"49eb6431-10bd-433c-9021-26cac6e4cf3f\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-05-26T12:29:41.000Z\",\n \"vin\": \"5NPD84LF2LH583356\",\n \"licensePlate\": \"\",\n \"year\": \"2020\",\n \"model\": \"Elantra\",\n \"make\": \"HYUNDAI\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"merchandiseVehicleData\": {\n \"make\": \"Hyundai\",\n \"model\": \"Elantra\",\n \"year\": \"2020\",\n \"body\": \"Minivan\",\n \"vin\": \"5NPD84LF2LH583356\",\n \"source\": {\n \"make\": \"INVENTORY\",\n \"model\": \"INVENTORY\",\n \"year\": \"INVENTORY\",\n \"body\": \"INVENTORY\",\n \"vin\": \"INSPECTION\",\n \"color\": \"INVENTORY\"\n },\n \"color\": \"WHITE\"\n },\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F49eb6431-10bd-433c-9021-26cac6e4cf3f%2FckQQq3itAWRI9FKahjQ9%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"73ce1372-aa09-40c0-b9f0-4aa9732811bf\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-15T17:58:05.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"hasHelios\": false,\n \"hasArtemis\": false,\n \"hasAtlas\": false,\n \"isArtemisModuleInvalid\": true,\n \"isAtlasModuleInvalid\": true,\n \"isHeliosModuleInvalid\": true,\n \"isScanInvalid\": true,\n \"isRentalLite\": false,\n \"overviewImage\": \"\"\n }\n ]\n}"},{"id":"f46be28a-9fef-40c1-8f5f-290bcd161423","name":"Latest Inspections by Days (Site-Group ID)","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"siteGroupId\": \"\", \n \"amountOfDaysForSearch\": 10 \n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{latest_inspections_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"content-length","value":"1202","enabled":true},{"key":"etag","value":"W/\"4b2-Joztfr81uuYwgEVOh52cnN6VoQk\"","enabled":true},{"key":"date","value":"Mon, 13 Feb 2023 06:27:46 GMT","enabled":true},{"key":"connection","value":"keep-alive","enabled":true},{"key":"keep-alive","value":"timeout=5","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspections\": [\n {\n \"inspectionId\": \"7fd27d5c-8314-41bc-88d0-90270beda9dd\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-25T16:03:22.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F7fd27d5c-8314-41bc-88d0-90270beda9dd%2FMVuMTPzmy4X8W3GQIEYJ%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"a1731497-aaf1-480a-9e91-29f593d94ea1\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-23T17:12:05.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"X431V\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"UT\",\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2Fa1731497-aaf1-480a-9e91-29f593d94ea1%2FZjHyttu1AJMcQHn0J9qG%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"5731c587-4d44-499b-9ff7-35d34ecbf072\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-23T15:16:02.000Z\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"licensePlate\": \"F778FM\",\n \"year\": \"2018\",\n \"model\": \"F-150\",\n \"make\": \"FORD\",\n \"licensePlateUsStateAbbreviation\": \"UT\",\n \"merchandiseVehicleData\": {\n \"make\": \"FORD\",\n \"model\": \"F-150\",\n \"year\": \"2018\",\n \"color\": \"Gray\",\n \"body\": \"Pickup\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"source\": {\n \"make\": \"INSPECTION\",\n \"model\": \"INSPECTION\",\n \"year\": \"INSPECTION\",\n \"color\": \"INSPECTION\",\n \"body\": \"INSPECTION\",\n \"vin\": \"INSPECTION\"\n }\n },\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F5731c587-4d44-499b-9ff7-35d34ecbf072%2FYiuNWH3eaUhCx7n4hLnF%2FcoverImage.jpeg\"\n }\n ]\n}"},{"id":"19dec810-82d9-4863-aecb-451be0eedbdd","name":"Latest Inspections by Hours (Site-Group ID)","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"siteGroupId\": \"\", \n \"amountOfHoursForSearch\": 1000\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{latest_inspections_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"content-length","value":"1202","enabled":true},{"key":"etag","value":"W/\"4b2-Joztfr81uuYwgEVOh52cnN6VoQk\"","enabled":true},{"key":"date","value":"Mon, 13 Feb 2023 06:28:42 GMT","enabled":true},{"key":"connection","value":"keep-alive","enabled":true},{"key":"keep-alive","value":"timeout=5","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspections\": [\n {\n \"inspectionId\": \"7fd27d5c-8314-41bc-88d0-90270beda9dd\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-25T16:03:22.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F7fd27d5c-8314-41bc-88d0-90270beda9dd%2FMVuMTPzmy4X8W3GQIEYJ%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"5731c587-4d44-499b-9ff7-35d34ecbf072\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-23T15:16:02.000Z\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"licensePlate\": \"F778FM\",\n \"year\": \"2018\",\n \"model\": \"F-150\",\n \"make\": \"FORD\",\n \"licensePlateUsStateAbbreviation\": \"UT\",\n \"merchandiseVehicleData\": {\n \"make\": \"FORD\",\n \"model\": \"F-150\",\n \"year\": \"2018\",\n \"color\": \"Gray\",\n \"body\": \"Pickup\",\n \"vin\": \"1FTFW1RG0JFD28516\",\n \"source\": {\n \"make\": \"INSPECTION\",\n \"model\": \"INSPECTION\",\n \"year\": \"INSPECTION\",\n \"color\": \"INSPECTION\",\n \"body\": \"INSPECTION\",\n \"vin\": \"INSPECTION\"\n }\n },\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F5731c587-4d44-499b-9ff7-35d34ecbf072%2FYiuNWH3eaUhCx7n4hLnF%2FcoverImage.jpeg\"\n }\n ]\n}"},{"id":"261b65f3-f816-4d08-91fa-a1561028b4ae","name":"Latest Inspections by Amount (Site-Group ID)","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"siteGroupId\": \"\",\n \"amountOfInspections\": 10\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{latest_inspections_suffix}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-powered-by","value":"Express","enabled":true},{"key":"vary","value":"Origin","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","enabled":true},{"key":"content-length","value":"465","enabled":true},{"key":"etag","value":"W/\"1d1-qBt2xCaWcQdM+JmX+bux3kPA+gY\"","enabled":true},{"key":"date","value":"Mon, 13 Feb 2023 06:25:54 GMT","enabled":true},{"key":"connection","value":"keep-alive","enabled":true},{"key":"keep-alive","value":"timeout=5","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n \"inspections\": [\n {\n \"inspectionId\": \"7fd27d5c-8314-41bc-88d0-90270beda9dd\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-25T16:03:22.000Z\",\n \"vin\": \"\",\n \"licensePlate\": \"\",\n \"year\": \"\",\n \"model\": \"\",\n \"make\": \"\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F7fd27d5c-8314-41bc-88d0-90270beda9dd%2FMVuMTPzmy4X8W3GQIEYJ%2FcoverImage.jpeg\"\n },\n {\n \"inspectionId\": \"98902fdd-a20e-4c23-a5d1-592fc13f56fc\",\n \"siteId\": \"WwiWSdfhyWiMSOXfKKDx_mirror\",\n \"organizationId\": \"GoGP0TEVU6YVBXkSyb2e_mirror\",\n \"inspectedAt\": \"2026-06-22T21:03:09.000Z\",\n \"vin\": \"1C4BJWFG7CL218906\",\n \"licensePlate\": \"\",\n \"year\": \"2012\",\n \"model\": \"Wrangler\",\n \"make\": \"JEEP\",\n \"licensePlateUsStateAbbreviation\": \"\",\n \"merchandiseVehicleData\": {\n \"make\": \"JEEP\",\n \"model\": \"Wrangler\",\n \"year\": \"2012\",\n \"color\": \"Silver\",\n \"body\": \"Sport Utility Vehicle [SUV]/Multipurpose Vehicle [MPV]\",\n \"vin\": \"1C4BJWFG7CL218906\",\n \"source\": {\n \"make\": \"INSPECTION\",\n \"model\": \"INSPECTION\",\n \"year\": \"INSPECTION\",\n \"color\": \"INSPECTION\",\n \"body\": \"INSPECTION\",\n \"vin\": \"INSPECTION\"\n }\n },\n \"hasHelios\": true,\n \"hasArtemis\": true,\n \"hasAtlas\": true,\n \"isArtemisModuleInvalid\": false,\n \"isAtlasModuleInvalid\": false,\n \"isHeliosModuleInvalid\": false,\n \"isScanInvalid\": false,\n \"isRentalLite\": false,\n \"overviewImage\": \"https://storage.googleapis.com/uvcamp-staging.appspot.com/organizations%2FGoGP0TEVU6YVBXkSyb2e_mirror%2Fsites%2FWwiWSdfhyWiMSOXfKKDx_mirror%2Finspections%2F98902fdd-a20e-4c23-a5d1-592fc13f56fc%2FQcRUJY5yg5JLVRrChDYv%2FcoverImage.jpeg\"\n }\n ]\n}"}],"_postman_id":"6c697fe6-cb37-493e-b9d9-ebd6d5760fcb"},{"name":"image","id":"ffe14d44-ba9f-47c7-999c-7ef228cddaf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}{{image_url_suffix}}?key=","description":"

General Description:

\n

Image
Returns an image acquired during a UVeye inspection. The image is identified by a key query parameter.

\n

Where do image keys come from?
You normally do not build this request yourself. Image URLs are returned inside the other endpoints' responses (for example overviewImage and coverImage, the tire treadImage/wallImage, detection image/croppedImage, and the Atlas coverImages/animatedFrames in Inspection Details). Those URLs already include the ?key=... parameter — use the returned URL as-is.

\n

Request:
The request has no body. The only input is the key query parameter.

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parameterlocationtypedescription
keyquerystringthe image key, taken from an image URL returned by another endpoint
\n

Response:
The response body is the raw image (image/jpeg, or image/png for keys configured to return PNG) — not JSON.

\n

Note: Image URLs are valid for 1 hour (unless stated otherwise) and expire afterwards. Request a fresh inspection response to obtain new image URLs.

\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"uveye-api-key"},{"key":"value","value":"{{uveye_api_key}}"}]},"isInherited":true,"source":{"_postman_id":"56a4eeda-8226-4651-a542-b93345bf7ce6","id":"56a4eeda-8226-4651-a542-b93345bf7ce6","name":"UVeye Public API v1","type":"collection"}},"urlObject":{"host":["{{base_url}}{{image_url_suffix}}"],"query":[{"key":"key","value":""}],"variable":[]}},"response":[],"_postman_id":"ffe14d44-ba9f-47c7-999c-7ef228cddaf2"},{"name":"Quote Data by Inspection ID","id":"ec15ef09-25d7-4b70-8fb5-3578ef4cda6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}"}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\", // or use \"\" / \"\" / \"\"\n \"includeImages\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{appraisal_quote}}","description":"

General Description:

\n

Quote Data by Inspection ID
Returns the appraisal data of an inspection: basic vehicle information, the public quote link, the offer price and total reconditioning cost (when available), and a list of damages grouped by car part. Each damage group contains the estimator description and the cost to repair or replace the part, plus an image URL and the damage-location rectangle per detection.

\n

Make sure the inspected vehicle has a related appraisal ready on uvcamp.

\n

Request-Body schema:
Provide one identifier (inspectionId, licensePlate, vin, or uniqueId).

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescriptionrequired\\optional
inspectionIdstringunique id of the inspectionrequired (1 of 4 identifiers)
licensePlatestringvehicle license platerequired (1 of 4 identifiers)
vinstringvehicle VINrequired (1 of 4 identifiers)
uniqueIdstringvehicle barcoderequired (1 of 4 identifiers)
includeImagesbooleanwhen false, image URLs are omitted from the responseoptional (true by default)
\n
Response-Body Schema (top level):
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescription
inspectionIdstringunique id of the inspection
uniqueIdstringvehicle barcode (if available)
licensePlatestringvehicle license plate
vinstringvehicle VIN
makestringvehicle make
modelstringvehicle model
yearnumbervehicle model year
quoteUrlstringpublic link to the quote
coverImagestringURL of the vehicle cover image
totalReconditioningCostnumbertotal estimated reconditioning cost (when available)
offerPricenumberoffer price (when available)
defectsobject[]list of damages grouped by car part (see below)
\n
defects[] — one entry per car part:
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescription
partNamestringthe affected car part
modulestring | nullthe module that detected the damage (e.g. Atlas, Artemis)
damagesobject[]list of estimated repairs for this part (see below)
\n
defects[].damages[] — one entry per estimated repair (cost lives here):
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescription
damageTypestringthe type of damage
isAutoEstimatedbooleantrue if the cost was auto-estimated
costnumbercost to repair or replace
descriptionstringestimator description
damagesobject[]supporting images for this repair (see below)
\n
defects[].damages[].damages[] — one entry per image:
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescription
imageUrlstringURL of the damage image
detectionIdstring | nulldetection id (null for tire / Artemis damages)
rectangleobjectdamage location: { pointType, top, left, width, height } (relative coordinates)
\n
\n

Note on nesting: each defects[] entry is one car part; its damages[] array holds the estimated repairs for that part; and each repair carries its own damages[] array of supporting images.

\n
\n
Possible response statuses:
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
status numberexpected messagedescription
200 (OK)--
400 (Bad Request)Request failed-
400 (Bad Request)Missing search criteriaone of inspectionId, licensePlate, vin, or uniqueId must be provided
401API key is disabledRefresh the API key in the backoffice and use the updated key in the header of the request
401Invalid API keyThe API key you entered is invalid
404 (Not Found)-no inspection or active quote found for the given identifier
405 (Method Not Allowed)unknown method, please use POSTyou are using a different method then \"POST\"
\n
","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"uveye-api-key"},{"key":"value","value":"{{uveye_api_key}}"}]},"isInherited":true,"source":{"_postman_id":"56a4eeda-8226-4651-a542-b93345bf7ce6","id":"56a4eeda-8226-4651-a542-b93345bf7ce6","name":"UVeye Public API v1","type":"collection"}},"urlObject":{"host":["{{base_url}}{{appraisal_quote}}"],"query":[],"variable":[]}},"response":[{"id":"f4e51d81-f658-4e62-b0eb-0fe10e764683","name":"Quote Data by Inspection ID","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\",\n \"alertsOnly\": false, \n \"showTreadPolygons\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{appraisal_quote}}"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n \"inspectionId\": \"30a54b98-6fd6-4a96-9b6b-da8885d7c826\",\n \"licensePlate\": \"VHA2642\",\n \"vin\": \"5N1AR2MN8FC700735\",\n \"make\": \"NISSAN\",\n \"model\": \"Pathfinder\",\n \"year\": 2015,\n \"coverImage\": \"https://api-uveye-staging.web.app/v1/image?key=KdVpn14adFv5IF1k40ao\",\n \"quoteUrl\": \"https://staging.public.uveye.app/evaluation/report/LAXfYVXyxhBYESY6R7Fo\",\n \"defects\": [\n {\n \"partName\": \"BumperFront\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 450,\n \"defectDescription\": \"The front bumper has multiple scratches of varying sizes and a small dent. These damages are more noticeable and might slightly affect the vehicle's aesthetic value.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=00ZmQzw1uq3fuj3JRNxX\",\n \"detectionId\": \"1db1460c-554c-4211-a7f5-aabc2338bf4d\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.083,\n \"height\": 0.039,\n \"top\": 0.778,\n \"left\": 0.183\n },\n \"damageType\": \"BodyShallowScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=A3XUqmFVBSrEIIZXnqKi\",\n \"detectionId\": \"81c4fdab-f5a7-4d90-a1f0-da6d104a688f\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.053,\n \"height\": 0.022,\n \"top\": 0.604,\n \"left\": 0.372\n },\n \"damageType\": \"BodyScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=q5RT0he5wPp0SCbJDIU4\",\n \"detectionId\": \"355ed497-46a8-45b6-8ced-3857f21c7652\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.078,\n \"height\": 0.037,\n \"top\": 0.777,\n \"left\": 0.369\n },\n \"damageType\": \"BodyScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=Pcngo6XQOID9hjMWEba9\",\n \"detectionId\": \"db900ffc-ad9d-4953-8812-66dae43e8fca\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.107,\n \"height\": 0.012,\n \"top\": 0.757,\n \"left\": 0.677\n },\n \"damageType\": \"BodyScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=pAAud4AoZ6mUczcgZ6yc\",\n \"detectionId\": \"7ca7b2be-45ac-434c-beab-b9a3653b1af6\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.059,\n \"height\": 0.047,\n \"top\": 0.658,\n \"left\": 0.261\n },\n \"damageType\": \"BodyDent\"\n }\n ]\n },\n {\n \"partName\": \"BumperRear\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 250,\n \"defectDescription\": \"The rear bumper has several small scratches, indicating superficial damage that does not affect the bumper's structural integrity.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=k1YaEVC6BwYkkkEkeSa1\",\n \"detectionId\": \"64487efe-c137-4021-9661-1506aa188565\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.088,\n \"height\": 0.039,\n \"top\": 0.218,\n \"left\": 0.449\n },\n \"damageType\": \"BodyShallowScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=cllFAYYbIK0fjwsNYvNt\",\n \"detectionId\": \"7dc7b42a-7968-4e16-b8d0-00cc2ae1d438\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.108,\n \"height\": 0.016,\n \"top\": 0.495,\n \"left\": 0.655\n },\n \"damageType\": \"BodyScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=7neO8q5cNDiDUbLgrDVT\",\n \"detectionId\": \"c68b1d10-347e-4f3b-920c-6e0fba492cd5\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.09,\n \"height\": 0.017,\n \"top\": 0.496,\n \"left\": 0.507\n },\n \"damageType\": \"BodyScratch\"\n }\n ]\n },\n {\n \"partName\": \"DoorFrontLeft\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 250,\n \"defectDescription\": \"The front left door of the Nissan Pathfinder has minor damages, including a small scratch with paint damage and two small dent clusters. These damages are superficial and do not affect the door's functionality.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=OoRle69EvoDV8gzbdY2O\",\n \"detectionId\": \"3ada709d-bfc2-449d-9458-642ced0b1a6e\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.071,\n \"height\": 0.025,\n \"top\": 0.66,\n \"left\": 0.495\n },\n \"damageType\": \"BodySevereScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=oKXXI6S0cxHqfHT9ihHQ\",\n \"detectionId\": \"06ed91cf-55e8-4cf9-8f2c-b71e1b34155f\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.017,\n \"height\": 0.014,\n \"top\": 0.593,\n \"left\": 0.5\n },\n \"damageType\": \"BodyClusterDent\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=anXBfu0qeb7HP8gRnXd9\",\n \"detectionId\": \"67db34b2-ad76-4f92-85fc-9a55cc0d401a\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.014,\n \"height\": 0.009,\n \"top\": 0.336,\n \"left\": 0.522\n },\n \"damageType\": \"BodyClusterDent\"\n }\n ]\n },\n {\n \"partName\": \"DoorFrontRight\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 400,\n \"defectDescription\": \"Medium-sized scratch with paint damage, along with a smaller scratch. Requires more extensive paint repair.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=QtJa8DHPJyvtTufjkZCj\",\n \"detectionId\": \"28917273-8099-4136-b3a2-5667dae3f126\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.245,\n \"height\": 0.08,\n \"top\": 0.598,\n \"left\": 0.443\n },\n \"damageType\": \"BodySevereScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=DbfYi2XY4GuKX3fPTW2m\",\n \"detectionId\": \"5b4e7622-d280-4e88-a693-276b00c7bf65\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.018,\n \"height\": 0.018,\n \"top\": 0.612,\n \"left\": 0.837\n },\n \"damageType\": \"BodyScratch\"\n }\n ]\n },\n {\n \"partName\": \"DoorRearLeft\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 105,\n \"defectDescription\": \"The rear left door of the Nissan Pathfinder has minor surface scratches and scratches with paint damage. These are small in size but may affect the aesthetic appeal of the vehicle.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=5VuvU5E6L7v9GZF0Ctjy\",\n \"detectionId\": \"19533932-18b2-4127-a95a-a9a4237b214d\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.14,\n \"height\": 0.017,\n \"top\": 0.345,\n \"left\": 0.367\n },\n \"damageType\": \"BodyShallowScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=AxcVVGC4uAWUDZsMoVyK\",\n \"detectionId\": \"d418ff8a-e66d-4c9c-83bb-67cd0df5aee0\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.025,\n \"height\": 0.008,\n \"top\": 0.578,\n \"left\": 0.426\n },\n \"damageType\": \"BodySevereScratch\"\n }\n ]\n },\n {\n \"partName\": \"DoorRearRight\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 105,\n \"defectDescription\": \"The damage consists of small surface scratches and scratches with paint damage, indicating superficial harm that does not affect the door's structural integrity.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=J0hlnndQSlH4D2IuIqvl\",\n \"detectionId\": \"08771911-1320-46fe-9d60-725548e4c812\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.17,\n \"height\": 0.03,\n \"top\": 0.598,\n \"left\": 0.489\n },\n \"damageType\": \"BodyShallowScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=YoAPcDIWFtBdk2h6yniC\",\n \"detectionId\": \"474a0303-a29e-4358-97eb-4eba87760aa7\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.133,\n \"height\": 0.012,\n \"top\": 0.666,\n \"left\": 0.39\n },\n \"damageType\": \"BodySevereScratch\"\n }\n ]\n },\n {\n \"partName\": \"FenderFrontLeft\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 200,\n \"defectDescription\": \"The front left fender has a small surface scratch and a small cluster of dents. These damages are superficial and do not affect the vehicle's functionality but may impact its aesthetic appeal.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=9ipi3zEFYgIYiqkfW6MY\",\n \"detectionId\": \"44151e8f-7efd-48a0-bf12-9f1063765ce9\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.024,\n \"height\": 0.024,\n \"top\": 0.514,\n \"left\": 0.458\n },\n \"damageType\": \"BodyShallowScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=Sx7DTpeCUXPj4xZLrVds\",\n \"detectionId\": \"88707a89-6c4e-4ac8-acfe-eaa7b0d81f20\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.027,\n \"height\": 0.02,\n \"top\": 0.596,\n \"left\": 0.48\n },\n \"damageType\": \"BodyClusterDent\"\n }\n ]\n },\n {\n \"partName\": \"FenderRearLeft\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 250,\n \"defectDescription\": \"The rear left fender has a small cluster of dents, likely from a minor collision or impact. These dents are small in size, indicating a less severe impact.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=eI6uusUqkjpjii5OfQ7G\",\n \"detectionId\": \"fc2b6f6f-4b73-43eb-9d8d-9f0077d84a64\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.027,\n \"height\": 0.01,\n \"top\": 0.169,\n \"left\": 0.329\n },\n \"damageType\": \"BodyClusterDent\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=Mv64ik5uy04HDZMRS6Mj\",\n \"detectionId\": \"a606e582-aee8-4178-b671-2c34fbabcd6c\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.014,\n \"height\": 0.022,\n \"top\": 0.263,\n \"left\": 0.661\n },\n \"damageType\": \"BodyClusterDent\"\n }\n ]\n },\n {\n \"partName\": \"FenderRearRight\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 200,\n \"defectDescription\": \"The damage consists of a small scratch and a small dent cluster on the rear right fender. These are superficial and do not affect the vehicle's structural integrity.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=6ZDqDHSGoBrPmMhCr2PR\",\n \"detectionId\": \"53390ad5-4fba-46b1-bcca-3dd534b1f33a\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.042,\n \"height\": 0.004,\n \"top\": 0.618,\n \"left\": 0.586\n },\n \"damageType\": \"BodyScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=J6kgPvGVJyMuL35iBeD7\",\n \"detectionId\": \"9357cdab-7115-4228-940a-fba019486a32\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.022,\n \"height\": 0.012,\n \"top\": 0.199,\n \"left\": 0.544\n },\n \"damageType\": \"BodyClusterDent\"\n }\n ]\n },\n {\n \"partName\": \"FuelCap\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 105,\n \"defectDescription\": \"A small surface scratch on the fuel cap, likely superficial and not affecting the vehicle's functionality.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=wsPhcVwFlfV0HzfOEzNh\",\n \"detectionId\": \"25999ffd-b32b-4eb1-8f2e-d529c8ee7103\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.18,\n \"height\": 0.02,\n \"top\": 0.536,\n \"left\": 0.334\n },\n \"damageType\": \"BodyShallowScratch\"\n }\n ]\n },\n {\n \"partName\": \"Hood\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 250,\n \"defectDescription\": \"The hood has multiple small scratches and dent clusters, indicating minor surface damage. This level of damage does not compromise the structural integrity of the hood but affects its aesthetic appeal.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=ffd1FsX9MuBA0DwDyk2r\",\n \"detectionId\": \"a33b7eb7-a116-4d61-a1df-f1b78df013a7\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.015,\n \"height\": 0.02,\n \"top\": 0.461,\n \"left\": 0.455\n },\n \"damageType\": \"BodySevereScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=xtCzWtkGuPkeVNw0xNcR\",\n \"detectionId\": \"2e727b50-97ef-463b-93f8-c4c85d0b27fc\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.016,\n \"height\": 0.016,\n \"top\": 0.716,\n \"left\": 0.535\n },\n \"damageType\": \"BodyScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=xPOWWM1lAXrRSniXdk92\",\n \"detectionId\": \"c06df190-29bc-4b84-b024-bd90d90a3de7\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.014,\n \"height\": 0.014,\n \"top\": 0.645,\n \"left\": 0.534\n },\n \"damageType\": \"BodyScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=MKhX1rW3Q8SwbdxLlk52\",\n \"detectionId\": \"57af3824-9eb2-43bf-84c9-dc9bc1d4dde7\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.006,\n \"height\": 0.007,\n \"top\": 0.757,\n \"left\": 0.518\n },\n \"damageType\": \"BodyClusterDent\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=HIScmfh61pJRxQ3IC1ak\",\n \"detectionId\": \"5981c52a-70bb-47ce-8838-355a06dcb464\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.015,\n \"height\": 0.018,\n \"top\": 0.496,\n \"left\": 0.394\n },\n \"damageType\": \"BodyClusterDent\"\n }\n ]\n },\n {\n \"partName\": \"LeftFrontTire\",\n \"module\": \"Artemis\",\n \"isAutoEstimated\": true,\n \"cost\": 275,\n \"defectDescription\": \"The tire needs to be replaced due to damage.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=vJndNeG7uUTJnBkkR1yT\",\n \"detectionId\": null,\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"top\": 0.409,\n \"height\": 0.19,\n \"left\": 0.34,\n \"width\": 0.231\n },\n \"damageType\": \"TireTreadDepth\"\n }\n ]\n },\n {\n \"partName\": \"LeftRearTire\",\n \"module\": \"Artemis\",\n \"isAutoEstimated\": true,\n \"cost\": 275,\n \"defectDescription\": \"The tire needs to be replaced due to damage.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=Y8t3Kydxz2mNHlFgMJvp\",\n \"detectionId\": null,\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"top\": 0.408,\n \"height\": 0.193,\n \"left\": 0.339,\n \"width\": 0.212\n },\n \"damageType\": \"TireTreadDepth\"\n }\n ]\n },\n {\n \"partName\": \"LicensePlateRear\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 90,\n \"defectDescription\": \"A small cluster of dents on the rear license plate area, likely not affecting the vehicle's functionality but may impact aesthetics.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=2jDQZixCh2jVkcuRO6MF\",\n \"detectionId\": \"86b0d5d3-e5ff-4ddd-b39a-59132b021a07\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.01,\n \"height\": 0.01,\n \"top\": 0.423,\n \"left\": 0.015\n },\n \"damageType\": \"BodyClusterDent\"\n }\n ]\n },\n {\n \"partName\": \"RightRearTire\",\n \"module\": \"Artemis\",\n \"isAutoEstimated\": true,\n \"cost\": 275,\n \"defectDescription\": \"The tire needs to be replaced due to damage.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=RfxEXbAT3kAMhD4sFXHd\",\n \"detectionId\": null,\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"top\": 0.43,\n \"height\": 0.2,\n \"left\": 0.594,\n \"width\": 0.218\n },\n \"damageType\": \"TireTreadDepth\"\n }\n ]\n },\n {\n \"partName\": \"Roof\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 105,\n \"defectDescription\": \"A small scratch on the roof, likely superficial and not penetrating through the paint to the metal. This type of damage is primarily cosmetic.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=DRSpX5Ky51CW32KYUlJM\",\n \"detectionId\": \"e8952044-cba8-4085-8905-10a28d4c273c\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.201,\n \"height\": 0.041,\n \"top\": 0.213,\n \"left\": 0.574\n },\n \"damageType\": \"BodyScratch\"\n }\n ]\n },\n {\n \"partName\": \"RoofRackLeft\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 200,\n \"defectDescription\": \"The roof rack on the left side of the vehicle has multiple small paint damages. These are likely superficial and do not affect the structural integrity of the roof rack.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=Kt9jnzvbvd90dtMgrgr2\",\n \"detectionId\": \"3ef86eb6-2866-4bd1-ab37-18a21d04ba42\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.048,\n \"height\": 0.074,\n \"top\": 0.595,\n \"left\": 0.148\n },\n \"damageType\": \"BodyPaintDamage\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=4gVbq9cjKgrmLUoydqas\",\n \"detectionId\": \"30c5e3d1-8905-4054-b0b0-9b17d5c39cf3\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.016,\n \"height\": 0.046,\n \"top\": 0.601,\n \"left\": 0.738\n },\n \"damageType\": \"BodyPaintDamage\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=N2AKTrqbds6BqbLrnhJB\",\n \"detectionId\": \"05094701-c01a-40d4-bb13-40ec50aa9273\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.024,\n \"height\": 0.048,\n \"top\": 0.375,\n \"left\": 0.106\n },\n \"damageType\": \"BodyPaintDamage\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=DyFmagMSjC7qgx4tldK9\",\n \"detectionId\": \"bdfded48-44d1-44d1-a563-6ccac641ff27\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.015,\n \"height\": 0.047,\n \"top\": 0.322,\n \"left\": 0.738\n },\n \"damageType\": \"BodyPaintDamage\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=Fr7pOtwwBEayqcbm2qPU\",\n \"detectionId\": \"7789d9fa-b984-4368-bbab-988c2a9ea5c2\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.045,\n \"height\": 0.08,\n \"top\": 0.249,\n \"left\": 0.803\n },\n \"damageType\": \"BodyPaintDamage\"\n }\n ]\n },\n {\n \"partName\": \"RoofRackRight\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 210,\n \"defectDescription\": \"Moderate scratches with paint damage on the roof rack, including a larger area that may require more extensive paint repair.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=CSAUox8Dw8SrJW6pCD9I\",\n \"detectionId\": \"57593221-c834-4c81-85f0-973ba97ce1db\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.215,\n \"height\": 0.031,\n \"top\": 0.608,\n \"left\": 0.583\n },\n \"damageType\": \"BodySevereScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=LY4x55z6AqC3ZR7zeXGz\",\n \"detectionId\": \"2c63d2ad-6bf7-4ce7-a3db-07e514b1ec60\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.237,\n \"height\": 0.04,\n \"top\": 0.511,\n \"left\": 0.558\n },\n \"damageType\": \"BodySevereScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=Dkyl7GzZ9bfcrd1uVOx2\",\n \"detectionId\": \"2634701b-dd2d-454e-9321-dfaad9b87baa\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.248,\n \"height\": 0.046,\n \"top\": 0.311,\n \"left\": 0.553\n },\n \"damageType\": \"BodySevereScratch\"\n },\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=L9ZAysDwdjUBdwodK4Kg\",\n \"detectionId\": \"f940b615-3cff-4124-bb5a-d1b68ddf9960\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.176,\n \"height\": 0.042,\n \"top\": 0.698,\n \"left\": 0.589\n },\n \"damageType\": \"BodyScratch\"\n }\n ]\n },\n {\n \"partName\": \"Trunk\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 130,\n \"defectDescription\": \"A small dent on the trunk, likely not affecting the vehicle's functionality but may impact aesthetics.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://api-uveye-staging.web.app/v1/image?key=QiNfD7N2SB7hG1fFTD7u\",\n \"detectionId\": \"b25e6e92-e09f-4d96-ac6f-8c5e209484f0\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.034,\n \"height\": 0.028,\n \"top\": 0.309,\n \"left\": 0.443\n },\n \"damageType\": \"BodyDent\"\n }\n ]\n }\n ],\n \"totalReconditioningCost\": 4125,\n \"offerPrice\": 10000\n}"},{"id":"e87cfb02-b07c-4718-82c5-92c2bc25af79","name":"Quote Data by Inspection ID","originalRequest":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\",\n \"alertsOnly\": false, \n \"showTreadPolygons\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}{{appraisal_quote}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Connection","value":"keep-alive"},{"key":"Content-Length","value":"3270"},{"key":"Cache-Control","value":"private"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Function-Execution-Id","value":"csggbx2di0db"},{"key":"Server","value":"Google Frontend"},{"key":"Strict-Transport-Security","value":"max-age=31556926"},{"key":"X-Cloud-Trace-Context","value":"fd2f6c220eaf2119f7a11003d4dbd9c1"},{"key":"X-Country-Code","value":"US"},{"key":"Accept-Ranges","value":"bytes"},{"key":"Date","value":"Tue, 27 Jan 2026 14:02:08 GMT"},{"key":"X-Served-By","value":"cache-iad-kjyo7100138-IAD"},{"key":"X-Cache","value":"MISS"},{"key":"X-Cache-Hits","value":"0"},{"key":"X-Timer","value":"S1769522526.032239,VS0,VE2216"},{"key":"Vary","value":"Origin,cookie,need-authorization, x-fh-requested-host, accept-encoding"},{"key":"alt-svc","value":"h3=\":443\";ma=86400,h3-29=\":443\";ma=86400,h3-27=\":443\";ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n \"inspectionId\": \"2b16873e-31de-4e84-9a5c-6e5eb0020536\",\n \"licensePlate\": \"Z865YY\",\n \"vin\": \"JTMWFREV4HD096740\",\n \"make\": \"TOYOTA\",\n \"model\": \"RAV4\",\n \"year\": 2017,\n \"coverImage\": \"https://us.api.uveye.app/v1/image?key=HcUhRhZt2aC4gpsTFRao\",\n \"quoteUrl\": \"https://us.public.uveye.app/evaluation/report/nWz0GSNPYFCSl61g914D\",\n \"defects\": [\n {\n \"partName\": \"BumperRear\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 97.5,\n \"defectDescription\": \"A small scratch on the rear bumper that does not penetrate the paint and is primarily cosmetic.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://us.api.uveye.app/v1/image?key=qA7Mp5hIepJstTu4tZ0M\",\n \"detectionId\": \"2b16873e-31de-4e84-9a5c-6e5eb0020536_scratches_damage_detector_inspection_50\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.037700000000000004,\n \"height\": 0.0286,\n \"top\": 0.6617000000000001,\n \"left\": 0.31365\n },\n \"damageType\": \"BodyScratch\"\n }\n ]\n },\n {\n \"partName\": \"DoorRearRight\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 90,\n \"defectDescription\": \"A small dent found on the rear right door, which may not affect the door's functionality but is visually noticeable.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://us.api.uveye.app/v1/image?key=rdS5zTMih1qo1XMMozH5\",\n \"detectionId\": \"2b16873e-31de-4e84-9a5c-6e5eb0020536_scratches_damage_detector_inspection_9\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.0819,\n \"height\": 0.0819,\n \"top\": 0.59055,\n \"left\": 0.6315500000000001\n },\n \"damageType\": \"BodyGlassesDent\"\n }\n ]\n },\n {\n \"partName\": \"FenderRearLeft\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 105,\n \"defectDescription\": \"The rear left fender has small dents that are not deep and do not affect the structural integrity of the vehicle. These dents can be repaired with minor bodywork.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://us.api.uveye.app/v1/image?key=0KQw5xfzq8oZFA4XNN4b\",\n \"detectionId\": \"2b16873e-31de-4e84-9a5c-6e5eb0020536_scratches_damage_detector_inspection_5\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.037700000000000004,\n \"height\": 0.0273,\n \"top\": 0.57285,\n \"left\": 0.33964999999999995\n },\n \"damageType\": \"BodyGlassesDent\"\n },\n {\n \"imageUrl\": \"https://us.api.uveye.app/v1/image?key=cMmZnll44vN2IceKb31O\",\n \"detectionId\": \"2b16873e-31de-4e84-9a5c-6e5eb0020536_scratches_damage_detector_inspection_4\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.0325,\n \"height\": 0.0234,\n \"top\": 0.5852999999999999,\n \"left\": 0.35825\n },\n \"damageType\": \"BodyShallowDent\"\n }\n ]\n },\n {\n \"partName\": \"LeftFrontTire\",\n \"module\": \"Artemis\",\n \"isAutoEstimated\": true,\n \"cost\": 275,\n \"defectDescription\": \"Wheel damage detected. Replacement or repair required.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://us.api.uveye.app/v1/image?key=A6E8uXtUnhZ4WBPT65a3\",\n \"detectionId\": \"g75qd975f7n0|RimDamageCosmetic\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"top\": 0.676,\n \"left\": 0.547,\n \"width\": 0.071,\n \"height\": 0.022\n },\n \"damageType\": \"TireCosmeticRimDamage\"\n }\n ]\n },\n {\n \"partName\": \"Trunk\",\n \"module\": \"Atlas\",\n \"isAutoEstimated\": true,\n \"cost\": 222.5,\n \"defectDescription\": \"The trunk has moderate sun damage, which may lead to paint deterioration and potential rusting if not addressed.\",\n \"damages\": [\n {\n \"imageUrl\": \"https://us.api.uveye.app/v1/image?key=Bcw71US7f1kV5XrGJu8g\",\n \"detectionId\": \"2b16873e-31de-4e84-9a5c-6e5eb0020536_scratches_damage_detector_inspection_10\",\n \"rectangle\": {\n \"pointType\": \"Relative\",\n \"width\": 0.1898,\n \"height\": 0.16640000000000002,\n \"top\": 0.2788,\n \"left\": 0.8311\n },\n \"damageType\": \"BodySunDamage\"\n }\n ]\n }\n ],\n \"totalReconditioningCost\": 790,\n \"offerPrice\": 11400\n}"}],"_postman_id":"ec15ef09-25d7-4b70-8fb5-3578ef4cda6e"},{"name":"Inspection shared","id":"32b96922-f10f-4bac-a0ae-f1cf10103735","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"uveye-api-key","value":"{{uveye_api_key}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"inspectionId\": \"\",\n \"publicLinkUrl\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{base_url}}inspection-shared","description":"

General Description:

\n

Inspection Shared
Records that an inspection's public link was shared with a customer. Call this after sending a public link so the share is logged in the UVeye system.

\n

Request-Body schema:

\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
parametertypedescriptionrequired\\optional
inspectionIdstringunique id of the inspection that was sharedrequired
publicLinkUrlstringthe public inspection link that was sent to the customeroptional
\n

Examples:

\n
{ \"inspectionId\": \"1234567890\", \"publicLinkUrl\": \"https://us.uvpub.uveye.app/public/ABCDEF123456\" }\n
{ \"inspectionId\": \"1234567890\" }\n

Response:
On success the endpoint returns 200 OK with an empty body. The inspection is recorded as shared in the UVeye system.

\n
Possible response statuses:
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
status numberexpected messagedescription
200 (OK)-the share was recorded
400 (Bad Request)-inspectionId is missing or the request is malformed
401API key is disabled / Invalid API keyrefresh the API key in the backoffice and use the updated key
405 (Method Not Allowed)unknown method, please use POSTyou are using a different method then \"POST\"
\n
","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"uveye-api-key"},{"key":"value","value":"{{uveye_api_key}}"}]},"isInherited":true,"source":{"_postman_id":"56a4eeda-8226-4651-a542-b93345bf7ce6","id":"56a4eeda-8226-4651-a542-b93345bf7ce6","name":"UVeye Public API v1","type":"collection"}},"urlObject":{"host":["{{base_url}}inspection-shared"],"query":[],"variable":[]}},"response":[{"id":"a115dd3b-1315-4a7f-8a77-d2c4bb7275e6","name":"inspection shares","originalRequest":{"method":"POST","header":[],"url":"{{base_url}}inspection-shared"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"32b96922-f10f-4bac-a0ae-f1cf10103735"}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"uveye-api-key"},{"key":"value","value":"{{uveye_api_key}}"}]}},"event":[{"listen":"prerequest","script":{"id":"d0d31682-df3e-4944-a7fa-0d46a171d72e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9694660d-2905-4d7d-ade4-256bc3a919a2","type":"text/javascript","exec":[""]}}],"variable":[{"key":"auth_key_field","value":"uveye-api-key"},{"key":"inspectionId","value":""},{"key":"vin","value":""},{"key":"licensePlate","value":""},{"key":"uniqueId","value":""},{"key":"siteId","value":""},{"key":"siteGroupId","value":""},{"key":"imageKey","value":""},{"key":"publicLinkUrl","value":""},{"key":"merchandise_api_key","value":""},{"key":"merchandise_webhook_url","value":""}]}