Logo
NEIDOSAN

Built by developers, for developers

Everything you need to integrate professional-grade 3D visualization into your own platforms.

Integration Tools

React SDK

Integrate our 3D viewer into your React applications with just a few lines of code.

npm i @product-viewer/react

REST API

Manage your assets, products, and deployments programmatically via our robust REST API.

curl -X GET https://api.pv.com/v1

WebGPU Engine

Custom shader support and low-level access to our high-performance rendering engine.

npm i @product-viewer/engine

Webhooks

Receive real-time notifications for upload completions, processing status, and more.

Endpoint: /api/webhooks

Quick Start Example

Adding a 3D viewer to your page is as simple as this:

import { ProductViewer } from "@product-viewer/react";

function App() {
  return (
    <div className="w-full h-96">
      <ProductViewer 
        productId="YOUR_PRODUCT_ID"
        environment="studio"
        autoRotate
      />
    </div>
  );
}