{
  "info": {
    "name": "Dynamic Mockups — mcp.ai",
    "description": "REST API for the Dynamic Mockups MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/dynamic_mockups",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "dynamic_mockups_create_mockanything_mockup",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/mockanything/mockup",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "mockanything",
            "mockup"
          ]
        },
        "description": "Create and optionally wait for a MockAnything mockup from exactly one prompt, public image URL, or uploaded image. WARNING: this persists a mockup, may find-or-create named collections, and consumes m",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"model\": \"\",\n  \"style\": \"\",\n  \"prompt\": \"\",\n  \"product\": {},\n  \"image_url\": \"\",\n  \"image_file\": {},\n  \"collections\": \"\",\n  \"aspect_ratio\": \"\",\n  \"catalog_uuid\": \"\",\n  \"enhance_prompt\": false,\n  \"wait_timeout_seconds\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dynamic_mockups_get_generation_options",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/generation/options",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "generation",
            "options"
          ]
        },
        "description": "Return current MockAnything styles and aspect-ratio support plus MotionMockups models, durations, aspect ratios, estimated times, and live credit prices. Call this before choosing generation settings ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mockanything_model\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dynamic_mockups_get_mockanything_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/mockanything/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "mockanything",
            "product"
          ]
        },
        "description": "Get one POD product's supported sizes, colors, and decoration locations before using its UUID in MockAnything generation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"product_uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dynamic_mockups_get_mockanything_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/mockanything/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "mockanything",
            "status"
          ]
        },
        "description": "Check one MockAnything task once, typically after Create MockAnything Mockup stops waiting. WARNING: a well-formed unknown UUID may return PENDING indefinitely, so PENDING does not prove the task exis",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dynamic_mockups_get_motion_mockup_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/motion/mockup/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "motion",
            "mockup",
            "status"
          ]
        },
        "description": "Check a submitted MotionMockups video job once and return its queue state or completed MP4 metadata. The tool does not poll automatically because jobs commonly take 2-15 minutes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"request_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dynamic_mockups_list_catalogs_and_collections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/catalogs/and/collections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "catalogs",
            "and",
            "collections"
          ]
        },
        "description": "Return the connected account's catalogs and collections, including the UUIDs used to filter mockups and target creation or bulk workflows. This is read-only and does not consume render credits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"catalog_uuid\": \"\",\n  \"include_all_catalogs\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dynamic_mockups_list_mockups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/mockups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "mockups"
          ]
        },
        "description": "Find renderable mockup templates and return their mockup, smart-object, text-layer, and print-area-preset UUIDs. Filters are optional; name matching semantics are not guaranteed because they could not",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"catalog_uuid\": \"\",\n  \"collection_uuid\": \"\",\n  \"include_all_catalogs\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dynamic_mockups_render_mockups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/render/mockups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "render",
            "mockups"
          ]
        },
        "description": "Render one or more explicitly selected mockup templates from public artwork URLs, colors, Beta text layers, and shared export settings. One item uses POST /renders and multiple items use POST /renders",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"renders\": \"\",\n  \"export_options\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dynamic_mockups_search_mockanything_products",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/mockanything/products",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "mockanything",
            "products"
          ]
        },
        "description": "Fuzzy-search POD products that can ground MockAnything generation. The provider may return up to 50 broad matches and exposes no pagination, so use a specific brand, style code, or product phrase.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dynamic_mockups_submit_motion_mockup",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/motion/mockup",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "motion",
            "mockup"
          ]
        },
        "description": "WARNING: Submit image-to-video generation and return a request ID for later status checks. This creates a long-running job and reserves or consumes model-, duration-, and audio-dependent credits; curr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"prompt\": \"\",\n  \"duration\": 0,\n  \"aspect_ratio\": \"\",\n  \"generate_audio\": false,\n  \"skip_discovery\": false,\n  \"negative_prompt\": \"\",\n  \"start_image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}