Do You Have Any Available APIs?

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": [
    "SKU1",
    "SKU2"
  ],
  "action": "model-search"
}
'

 

Response

{
  "success": true,
  "data": [
    {
      "job_id": "XXXXXXX",
      "sku": "SKU1",
      "category": "CATEGORY",
      "models": {
        "glb_uncompressed": {
          "url": ".../mesh.glb?action=model-search"
        },
        "glb": {
          "url": ".../meshc.glb?action=model-search"
        },
        "usdz": {
          "url": ".../mesh.usdz?action=model-search"
        }
      },
      "client_category": "CATEGORY",
      "title": "MODEL TITLE",
      "url": "https://www.nextechar.com/",
      "option_id": "OPTION ID",
...
    },
    {
      "job_id": "XXXXXXX",
      "sku": "SKU2",
      "category": "CATEGORY",
      "models": {
        "glb_uncompressed": {
          "url": ".../mesh.glb?action=model-search"
        },
        "glb": {
          "url": ".../meshc.glb?action=model-search"
        },
        "usdz": {
          "url": ".../mesh.usdz?action=model-search"
        }
      },
      "client_category": "CATEGORY",
      "title": "MODEL TITLE",
      "url": "https://www.nextechar.com/",
    "option_id": "OPTION ID",
...
  }
  ]
}