NextechAR provides clients with a JavaScript/HTML tag to load the ARitize buttons on their website. You can view our implementation guides here which include details on how to directly showcase your 3D models as well as instructions on implementing a QR code that will link to an AR (Augmented Reality) experience of your product.
Available APIs
ARitize3D typically only uses its own JavaScript implementation, if you would prefer to instead fetch the 3D models yourself, you are able to do the following.
POST Fetch 3D Model URLs
Fetch the 3D Models URLs for a given SKU. To find your client_key please view this document.
https://quick-ar.threedy.ai/api/search
Request
curl --location --request POST 'https://quick-ar.threedy.ai/api/search' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_key": "XXXYYY",
"sku": [
"SKU"
],
"action": "model-search"
}
'
Response
{
"success": true,
"data": [
{
"job_id": "XXXXXXX",
"sku": "SKU",
"category": "CATEGORY",
"models": {
"glb_uncompressed": {
"url": "https://d1j4h8y408pz6y.cloudfront.net/jobs/XXXXXXX/packaging/mesh.glb?action=model-search"
},
"glb": {
"url": "https://d1j4h8y408pz6y.cloudfront.net/jobs/XXXXXXX/packaging/meshc.glb?action=model-search"
},
"usdz": {
"url": "https://d1j4h8y408pz6y.cloudfront.net/jobs/XXXXXXX/packaging/mesh.usdz?action=model-search"
}
},
"client_category": "CATEGORY",
"title": "MODEL TITLE",
"url": "https://www.nextechar.com/",
"option_id": "OPTION ID",
...
}
]
}