How to Use Meshy6 API: Pricing, Features & Integration Guide
Start Building with Hypereal
Access Kling, Flux, Sora, Veo & more through a single API. Free credits to start, scale to millions.
No credit card required • 100k+ developers • Enterprise ready
What is Meshy6 API?
Meshy6 API provides programmatic access to advanced AI-powered 3D model generation. Create high-quality 3D assets from text descriptions or images, with support for multiple output formats including GLB, FBX, OBJ, and USDZ.
Meshy6 API Pricing
Pay-as-you-go
- Text-to-3D: $0.92 per generation
- Image-to-3D: $0.92 per generation
- No minimum commitment
- Pay only for what you use
Volume Discounts
- 10% off for $100+/month
- 20% off for $500+/month
- Custom pricing for enterprise
Free Tier
New users get free credits to test the API before committing.
Key Features
- Text-to-3D: Generate 3D models from text descriptions
- Image-to-3D: Convert images into 3D models
- Multiple Formats: Output in GLB, FBX, OBJ, and USDZ
- PBR Materials: Optional physically-based rendering maps
- Customizable Topology: Quad or triangle mesh options
- Adjustable Polycount: Control model complexity (100-300,000 polygons)
How to Use Meshy6 API
Step 1: Create an Account
Sign up at Hypereal to get started with Meshy6 API.
Step 2: Get Your API Key
Generate your API key from the dashboard. Keep it secure and never expose it in client-side code.
Step 3: Install SDK (Optional)
npm install hypereal
# or
pip install hypereal
Step 4: Text-to-3D Generation
const response = await fetch('https://api.hypereal.com/v1/meshy6-text-to-3d', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
prompt: 'a medieval sword with ornate golden handle',
art_style: 'realistic',
topology: 'triangle',
target_polycount: 30000,
enable_pbr: true
})
});
const result = await response.json();
console.log(result);
Step 5: Image-to-3D Generation
const response = await fetch('https://api.hypereal.com/v1/meshy6-image-to-3d', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
image: 'https://example.com/your-image.png',
topology: 'triangle',
target_polycount: 30000,
enable_pbr: true,
should_texture: true
})
});
const result = await response.json();
console.log(result);
Step 6: Handle the Response
if (result.status === 'success') {
console.log('3D Model URLs:', result.outputs);
} else {
console.error('Error:', result.error);
}
API Parameters
Text-to-3D Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| prompt | string | Yes | - | Description of the 3D model (max 600 chars) |
| art_style | string | No | realistic | Art style: realistic or sculpture |
| topology | string | No | triangle | Mesh type: quad or triangle |
| target_polycount | integer | No | 30000 | Target polygons (100-300000) |
| enable_pbr | boolean | No | false | Generate PBR material maps |
Image-to-3D Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| image | string | Yes | - | Image URL or base64 data URI |
| topology | string | No | triangle | Mesh type: quad or triangle |
| target_polycount | integer | No | 30000 | Target polygons (100-300000) |
| enable_pbr | boolean | No | false | Generate PBR material maps |
| should_texture | boolean | No | true | Generate textures |
Best Practices
- Use high-quality images - For image-to-3D, use clear, well-lit images
- Be descriptive - For text-to-3D, provide detailed prompts
- Choose appropriate topology - Use quad for smooth surfaces, triangle for detail
- Optimize polycount - Balance quality with file size needs
- Enable PBR for games - Use PBR maps for game-ready assets
Common Use Cases
Game Development
Create 3D assets for games from concept art or descriptions.
E-commerce
Generate 3D product models for AR/VR shopping experiences.
Architecture
Convert architectural sketches to 3D models.
Education
Create 3D educational content and visualizations.
FAQ
How much does Meshy6 API cost?
$0.92 per 3D model generation for both text-to-3D and image-to-3D.
What formats are supported?
GLB, FBX, OBJ, and USDZ formats are available.
How long does generation take?
Typically 5-10 minutes per model.
Can I use it commercially?
Yes, all plans include commercial usage rights.
Why Choose Hypereal for Meshy6 API?
Access Meshy6 and 100+ other AI models through a single, unified API. Benefits include:
- One API key for all models
- Unified billing across providers
- Competitive pricing with volume discounts
- Excellent documentation and support
Get Started Free - No credit card required.
Related Articles
Start Building Today
Get 35 free credits on signup. No credit card required. Generate your first image in under 5 minutes.
