Jewelry Visualizer
Photorealistic jewelry renders from text and references
Complete jewelry workflow suite for designers, jewelers, and retailers. Generate, visualize, recolor, engrave, compare variants, clean photos, and identify pieces and hallmarks.
Generate a photorealistic image of jewelry from a text description, reference images, or both. Describe the piece and/or provide reference photos for inspiration. Optionally specify a model/person (via text or photo) to show the jewelry worn.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "jewelry-visualizer",
"skill": "generate_jewelry",
"input": {
"prompt": "Engagement ring, 18k yellow gold band, emerald-cut 2 carat diamond center stone, pavé set round brilliant diamonds on the band, polished finish"
}
}' \
https://api.toolrouter.com/v1/tools/callTake a reference photo of existing jewelry and render it on a person or model. Accepts the jewelry image URL plus a text description and/or a photo of the model/person. Describe where it is worn (hand, neck, ear, wrist) and the desired scene.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "jewelry-visualizer",
"skill": "visualize_on_model",
"input": {
"jewelry_image_url": "https://example.com/ring.jpg",
"prompt": "Show this engagement ring on a woman's left hand ring finger, light skin tone, hand resting on a linen tablecloth, soft natural daylight"
}
}' \
https://api.toolrouter.com/v1/tools/callConvert a jewelry design or photo into a technical schematic illustration. Produces clean line-art engineering drawings showing stone settings, metal structure, and construction details. Accepts a reference image, text description, or both.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "jewelry-visualizer",
"skill": "design_to_schematic",
"input": {
"design_image_url": "https://example.com/ring.jpg",
"view": "front",
"style": "line_drawing"
}
}' \
https://api.toolrouter.com/v1/tools/callSwap the metal color and/or stone type on an existing jewelry photo. Changes yellow → rose gold, diamonds → sapphires, etc. Preserves all design details exactly.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "jewelry-visualizer",
"skill": "recolor_design",
"input": {
"jewelry_image_url": "https://example.com/ring.jpg",
"metal": "rose_gold"
}
}' \
https://api.toolrouter.com/v1/tools/callAdd engraved text to a jewelry photo — ring bands, pendants, or bracelets. Shows how a personalized inscription will look before ordering.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "jewelry-visualizer",
"skill": "engrave_preview",
"input": {
"jewelry_image_url": "https://example.com/wedding-band.jpg",
"text": "14.06.2026",
"placement": "inside_band",
"font_style": "roman"
}
}' \
https://api.toolrouter.com/v1/tools/callGenerate the same jewelry design in multiple metal/stone combinations side by side. Useful for client proposals and purchasing decisions.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "jewelry-visualizer",
"skill": "compare_variants",
"input": {
"base_image_url": "https://example.com/ring.jpg",
"variants": [
{
"label": "Yellow Gold",
"metal": "yellow gold"
},
{
"label": "Rose Gold",
"metal": "rose gold"
},
{
"label": "Platinum",
"metal": "platinum"
}
],
"shot_type": "product"
}
}' \
https://api.toolrouter.com/v1/tools/callRemove dust, fingerprints, and surface marks from a jewelry product photo. Produces a clean studio shot without touching the jewelry itself.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "jewelry-visualizer",
"skill": "clean_photo",
"input": {
"jewelry_image_url": "https://example.com/dusty-ring.jpg"
}
}' \
https://api.toolrouter.com/v1/tools/callAnalyze a jewelry photo and identify the piece's era, style, likely metal, stone types, setting, and condition. Returns structured data suitable for appraisal, cataloging, or client reports.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "jewelry-visualizer",
"skill": "identify_piece",
"input": {
"image_url": "https://example.com/mystery-ring.jpg"
}
}' \
https://api.toolrouter.com/v1/tools/callRead and decode jewelry hallmarks or maker's marks from a close-up photo. Returns metal purity, assay office, date letter, maker's mark, and country of origin.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "jewelry-visualizer",
"skill": "identify_hallmark",
"input": {
"image_url": "https://example.com/hallmark-closeup.jpg",
"country_hint": "United Kingdom"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"jewelry-visualizer","skill":"generate_jewelry","input":{}}' \
https://api.toolrouter.com/v1/tools/call