Mockupanda
API Documentation
Back to app

Introduction

Welcome to the Mockupanda API documentation. The Mockupanda API allows you to generate professional print mockups programmatically using a simple REST API.

What is Mockupanda?

Mockupanda is a mockup generation service and tool designed for Etsy sellers, print-on-demand businesses, and designers who need to create product mockups at scale. Upload your artwork, select a template, and get a high-quality mockup in seconds.

The API version of Mockupanda allows you to embed mockup generation into your own application or workflow, unlocking new automation possibilities for your business.

The cost is a fraction of the price of an AI image generation API, and the results are consistent and predictable. You can create your own templates

Quick Example

Here's how simple it is to generate a mockup:

curl -X POST https://mockupanda.com/api/v1/mockups/generate \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "template_id": "bedroom-poster-01",
  "artwork_url": "https://example.com/your-art.jpg",
  "width": 2000,
  "format": "jpeg"
}' \
--output mockup.jpg

The API returns the mockup image directly, ready to download or display.

Getting Started

To start using the API:

  1. Create an account at mockupanda.com
  2. Generate an API key from Dashboard → API Keys
  3. Add credits to your wallet from Dashboard → Billing
  4. Browse templates to find template IDs at mockupanda.com/editor
  5. Make your first request using the quickstart guide

API Basics

  • Base URL: https://mockupanda.com/api/v1
  • Authentication: Bearer token in Authorization header
  • Rate Limits: 100 requests per minute per API key
  • Pricing: 1 credit per mockup (1 credit = $0.01 USD)

Need Help?