Anyone using the Meshy API in production? sharing my experience
Built a small internal tool at work that uses the Meshy API to generate product visualization mockups on demand. Been running it for about 2 months. Sharing what I've learned.
The API is straightforward. POST a prompt, get back a task ID, poll for completion, download the result. The documentation is decent and the Python SDK works without issues.
Generation time via API is similar to the web interface. Usually 1-3 minutes for text-to-3D. Occasionally longer during peak hours.
Rate limits: on the Pro plan you can run multiple tasks but they queue. For our use case (a few mockups per day) this is fine. If you need high throughput you'd want to look at the Studio plan or enterprise options.
Error handling is important. About 5-10% of generations fail or produce unusable results. Build retry logic into your integration. I retry up to 3 times before flagging for human review.
Cost tracking: each generation costs credits. I built a simple dashboard that tracks credit usage per user so we can see where the budget is going. Useful for justifying the subscription cost.
One thing I wish was better: webhooks. Currently I poll for completion which works but webhooks would be cleaner for production use. Not sure if that's on the roadmap.
Overall the API is solid for what it is. If you're building something that needs programmatic 3D generation it's worth evaluating.