For Agents
Fetch Wayfair 3D model data for products via Basic auth. Use it for AR previews, room planners, and product visualisation tools.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Wayfair 3D Models API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Faboutwayfair.com%2Fwayfair" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Faboutwayfair.com%2Fwayfair" | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Wayfair 3D Models API.
Pull a sample set of 3D models for evaluation without an account
Retrieve realtime 3D model data for products as a registered partner
Submit a sign-up request to obtain registered API access
GET STARTED
Use for: I need to fetch 3D model data for a Wayfair product, Get a demo set of 3D models to prototype an AR viewer, Sign up for registered access to the Wayfair 3D Models API, Pull realtime 3D models for the catalogue as a registered partner
Not supported: Does not handle product purchase, inventory, pricing, or order fulfilment - use for partner access to 3D model data only.
Jentic publishes the only available OpenAPI specification for Wayfair 3D Models API, keeping it validated and agent-ready. Wayfair's 3D Models API exposes its catalogue of realtime 3D model data for products, intended for partners building AR previews, virtual room planners, and product visualisers. The three endpoints cover demo access, registered access, and a sign-up route. Authentication for registered access uses HTTP Basic with credentials issued after sign-up. The surface is intentionally narrow: it is read-only product 3D data, not a full commerce or inventory API.
Patterns agents use Wayfair 3D Models API for, with concrete tasks.
★ AR Product Preview
Retailers and home-design apps add an AR preview that lets shoppers place a Wayfair product in their room before buying. The Wayfair 3D Models API provides the underlying model data; the demo endpoint covers prototyping while registered access supplies the production catalogue. The narrow surface keeps integration cheap when 3D is one feature inside a larger experience.
Pull demo 3D models, build a viewer prototype, then switch to the registered endpoint with stored credentials
Virtual Room Planner
Room-planning tools render furniture in a 3D scene so users can lay out a room before buying. The realtime endpoint returns up-to-date 3D model data for the registered catalogue, so a planner can show current product geometry and textures rather than stale local copies. Pair with a sign-up flow to issue partner credentials.
Fetch realtime 3D model data for product SKU 'W12345' and render it in the planner scene
Partner Onboarding
Wayfair partners begin with the demo endpoint to evaluate the data shape, then submit a sign-up request to receive registered credentials. POST /sign_up captures partner details and triggers the Wayfair onboarding workflow. Backend automation can drive the demo + sign-up steps before handing the production credentials to the integration team.
Submit a sign-up request for partner 'AcmeAR' with contact email and intended use case
Agent-Driven Catalogue Access via Jentic
AI agents that build product visualisations on demand can call the Wayfair 3D Models API as a tool. Through Jentic, an agent searches by intent, loads the registered-access operation, and executes with the Basic credentials held in your Jentic One instance. The structured response slots into the agent's downstream rendering pipeline.
Search Jentic for 'fetch Wayfair 3D models', load the schema, and execute the registered-access call with credentials from the vault
3 endpoints — jentic publishes the only available openapi specification for wayfair 3d models api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/models_demo
Get demo 3D models without authentication
/models
Get realtime 3D model data for registered partners
/sign_up
Register for partner API access
/models_demo
Get demo 3D models without authentication
/models
Get realtime 3D model data for registered partners
/sign_up
Register for partner API access
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Wayfair 3D Models API by hand means encoding its Basic auth credentials, base64-building the Authorization header, and pointing calls at the partner host yourself. Through Jentic you install once, import the Wayfair 3D Models API from the API Directory, store the Basic credentials once, and your agent calls it.
Permission scoping
The models and sign-up paths carry no resource id in the URL, so limit the agent to the operations it needs, such as listing 3D models. You choose the operations it may call, so partner sign-up is not included unless you add it.
Credential isolation
Your Wayfair Basic auth credentials are stored once, encrypted, by your own Jentic One instance and injected as the Authorization header at execution time. They never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'fetch Wayfair 3D models', and Jentic returns the matching operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Wayfair 3D Models API through Jentic.
Why is there no official OpenAPI spec for Wayfair 3D Models API?
Wayfair publishes a partner page describing the 3D Models endpoints rather than a hosted OpenAPI catalog. Jentic generates and maintains this spec so that AI agents and developers can call Wayfair 3D Models API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.
What authentication does the Wayfair 3D Models API use?
Registered access uses HTTP Basic auth with credentials issued after a partner sign-up. The demo endpoint is reachable without credentials. Through Jentic, partner credentials are stored encrypted in your Jentic One instance and applied at execution time, so the raw Basic auth string never enters the agent's context.
Can I fetch realtime 3D models with the Wayfair 3D Models API?
Yes. GET /models is the registered partner endpoint that returns realtime 3D model data. GET /models_demo is the unauthenticated demo endpoint useful for prototyping the response shape before registering for full access.
How do I sign up for registered access through Jentic?
Search Jentic for 'register for Wayfair 3D Models access' to find POST /sign_up, load the schema, and execute the call with the partner contact details. Wayfair returns credentials out of band; once issued, store them in your Jentic One instance for the registered endpoint.
What are the rate limits for the Wayfair 3D Models API?
The OpenAPI spec does not document explicit rate limits. Treat the API as low-throughput partner integration: cache responses where possible, add backoff on 429 or 5xx, and confirm production limits with the Wayfair partner contact issued at sign-up.
What 3D model formats does the API return?
The demo and registered endpoints return realtime 3D model data formatted for visualisation use cases (AR previews, room planners). Inspect the demo response first to confirm the field shape and any URLs to model assets before building production rendering logic.
Can I limit what my agent is allowed to do with the Wayfair 3D Models API?
Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials the agent may use, so you can allow only the calls it needs, such as GET /models to fetch registered 3D model data or GET /models_demo to prototype against the demo endpoint. The models and sign-up paths carry no resource id in the URL, so scoping happens at the operation level rather than per object. Partner registration through POST /sign_up is excluded unless you explicitly grant it, and the stored Basic auth credentials are injected at execution time rather than exposed to the agent.