Dynamic Mockups API
  • 🔑Get your API Key
  • 👋Get support via Slack
  • 🚀Get your first render in 1 minute
  • Getting Started
    • How does the API work?
    • How can I get my API key?
    • How are API calls billed?
    • How can I get support?
    • Frequently Asked Questions
    • Troubleshooting
  • API REFERENCE
    • Render API
    • Get Mockups API
    • Get Collections API
    • PSD Upload API
  • PRODUCT API REFERENCE
    • Render Product Images API
    • Get Products API
  • Mockup Editor SDK
    • Embed Mockup Editor
    • Embed in bubble.io
    • Editor Configuration
  • Knowledge Base
    • Tutorials
      • PSD Formatting Guide for Uploading to Dynamic Mockups
      • How to provide image link from Google Drive to Render API
      • How to render images using Zapier
      • How to render images using Make
    • Changelog
    • Photoshop API Feature Support
Powered by GitBook
On this page

Was this helpful?

  1. PRODUCT API REFERENCE

Get Products API

PreviousRender Product Images APINextEmbed Mockup Editor

Last updated 21 days ago

Was this helpful?

is_published optional query parameter

Provide is_published = true If you want to filter the products by their publication status. You may publish or unpublish the products in our web application editor.

Retrieve a list of products

get
Authorizations
Query parameters
is_publishedbooleanOptional

Filter by publication status (true for published only).

Responses
200
Successful response with a list of products
application/json
401
Unauthorized request, invalid or missing API key
get
GET /api/v1/products HTTP/1.1
Host: app.dynamicmockups.com
X-Api-Key: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "message": "",
  "data": [
    {
      "uuid": "e3a9a550-42f1-4cbe-bc33-24b859a13467",
      "name": "Classic Crew Neck T-Shirt",
      "custom_product_id": "crew-tee-001",
      "sku": "CLT100-BLK-M",
      "is_published": 1,
      "created_at": "2025-04-20T08:45:00Z",
      "thumbnail": "https://cdn.example.com/products/crew-tee-001/thumb.jpg",
      "template_groups": [
        {
          "uuid": "4f21ac10-67ff-42f4-9362-84a7498c8a9b",
          "name": "Classic Fit - Men",
          "is_published": 1,
          "inputs": [
            {
              "key": "artwork_main",
              "type": "artwork"
            }
          ]
        }
      ]
    }
  ]
}
  • GETRetrieve a list of products
  • is_published optional query parameter