Skip to main content

SudoMock Python SDK

Official Python client for the SudoMock Mockup Generator API.

Generate photorealistic product mockups from PSD templates or 2D mockups -- all from your Python code.

PyPI Python License: MIT CI

Installation

pip install sudomock

Quick Start

from sudomock import SudoMock

# 1. Create a client (or set SUDOMOCK_API_KEY env var)
client = SudoMock(api_key="sm_your_api_key")

# 2. List your mockup templates
mockups = client.mockups.list(limit=10)
for m in mockups.mockups:
    print(f"{m.name} ({m.uuid})")

# 3. Render a mockup with your artwork
render = client.renders.create(
    mockup_uuid=mockups.mockups[0].uuid,
    smart_objects=[{
        "uuid": mockups.mockups[0].smart_objects[0].uuid,
        "asset": {"url": "https://example.com/your-design.png"},
    }],
)
print(render.url)  # https://cdn.sudomock.com/renders/.../render.webp

Async Usage

import asyncio
from sudomock import AsyncSudoMock

async def main():
    async with AsyncSudoMock(api_key="sm_your_api_key") as client:
        mockups = await client.mockups.list()
        render = await client.renders.create(
            mockup_uuid=mockups.mockups[0].uuid,
            smart_objects=[{
                "uuid": mockups.mockups[0].smart_objects[0].uuid,
                "asset": {"url": "https://example.com/design.png"},
            }],
        )
        print(render.url)

asyncio.run(main())

2D mockups via API

Create a 2D mockup from a product image, wait until its print areas are ready, then render your artwork. Creation costs 25 credits and rendering costs 5 credits. Unsuccessful creations are refunded automatically.

from sudomock import SudoMock

client = SudoMock(api_key="sm_your_api_key")

# Create the 2D mockup (synchronous by default -- returns the finished mockup)
mockup = client.ai.create(
    source_url="https://example.com/product.jpg",
    name="Product Front",
    idempotency_key="product-front-001",
)

render = client.ai.render(
    mockup_uuid=mockup.mockup_id,
    print_areas=[{
        "uuid": mockup.quads[0].print_area_id,
        "artwork_url": "https://example.com/your-design.png",
    }],
)
print(render.url)

Async Rendering (Server-Side Queue)

Submit long-running renders to the server-side queue and poll for the result. This is independent of AsyncSudoMock -- is_async controls server queueing, while AsyncSudoMock only controls how your process performs HTTP I/O. Either client can submit async jobs.

from sudomock import SudoMock

client = SudoMock(api_key="sm_your_api_key")

# Submit -> returns a JobAccepted (HTTP 202), does not block on the render
job = client.renders.create(
    mockup_uuid="...",
    smart_objects=[{"uuid": "...", "asset": {"url": "https://example.com/d.png"}}],
    is_async=True,
)
print(job.job_id, job.status_url)

# Poll until terminal (succeeded / failed)
result = client.jobs.wait(job.job_id)        # or client.jobs.get(uuid) once
if result.succeeded:
    print(result.url)        # result_url
else:
    print("failed:", result.error)

Video Rendering

Animate a mockup into an AI video. Video renders are always async (return a JobAccepted). The first video render on a free plan is granted once for the account's lifetime. duration_seconds must be a value allowed by the chosen model (otherwise the API returns 422).

job = client.renders.create_video(
    mockup_uuid="...",
    smart_objects=[{"uuid": "...", "asset": {"url": "https://example.com/d.png"}}],
    duration_seconds=5,
    audio=False,
    motion="ambient",               # optional; "ambient" (default) or "showcase"
    advanced_model="veo-3.1-fast",  # optional; otherwise auto-selected by tier
)
video = client.jobs.wait(job.job_id)
print(video.url)

# Raw-image mode: animate a public image URL directly (no mockup render step)
job = client.renders.create_video(
    image_url="https://example.com/product.jpg",
    duration_seconds=5,
)

PSD Upload

Upload a PSD by URL and parse it into a mockup template. PSD uploads are free (zero credits) and support is_async.

mockup = client.psd.upload(url="https://example.com/template.psd", name="My PSD")
print(mockup.uuid)

# Async variant:
job = client.psd.upload(url="https://example.com/template.psd", is_async=True)
mockup = client.jobs.wait(job.job_id)

Webhooks

Manage outbound webhook endpoints (authenticated with your x-api-key) and verify inbound HMAC-signed deliveries.

# Register an endpoint
ep = client.webhook_endpoints.create(
    url="https://your-app.com/webhooks/sudomock",
    events=["render.succeeded", "render.failed"],
)
print(ep.secret)  # store this -- it signs deliveries

# List / update / rotate / test / replay
client.webhook_endpoints.list()
client.webhook_endpoints.update(ep.id, enabled=False)
client.webhook_endpoints.rotate_secret(ep.id)
client.webhook_endpoints.test(ep.id)
deliveries = client.webhook_endpoints.deliveries(ep.id)
client.webhook_endpoints.replay_delivery(ep.id, deliveries.deliveries[0].id)

# Cross-endpoint deliveries feed + bulk replay of all failed deliveries
client.webhook_endpoints.events(limit=100)
client.webhook_endpoints.replay_failed(ep.id)

Verify an inbound delivery in your handler (use the raw request body). SudoMock sends the signature and timestamp in two separate headers:

from sudomock import verify_webhook_signature
from sudomock.exceptions import WebhookVerificationError

signature = request.headers["X-SudoMock-Signature"]  # hex HMAC-SHA256 digest
timestamp = request.headers["X-SudoMock-Timestamp"]  # unix timestamp
try:
    verify_webhook_signature(secret, signature, timestamp, raw_body)
except WebhookVerificationError:
    ...  # reject: missing header / replayed / bad signature

Error Handling

from sudomock import SudoMock
from sudomock.exceptions import (
    AuthenticationError,
    InsufficientCreditsError,
    RateLimitError,
    NotFoundError,
    ValidationError,
    ServerError,
    SudoMockError,  # base class for all errors
)

client = SudoMock(api_key="sm_your_api_key")

try:
    render = client.renders.create(
        mockup_uuid="...",
        smart_objects=[...],
    )
except AuthenticationError:
    print("Invalid API key")
except InsufficientCreditsError as e:
    print(f"Out of credits. Resets at: {e.credits_reset_at}")
except RateLimitError as e:
    print(f"Rate limited. Retry after: {e.retry_after}s")
except NotFoundError:
    print("Mockup not found")
except ValidationError:
    print("Invalid request parameters")
except ServerError:
    print("Server error, will be retried automatically")
except SudoMockError as e:
    print(f"Unexpected error: {e.message} (HTTP {e.status_code})")

Account & Credits

from sudomock import SudoMock

client = SudoMock(api_key="sm_your_api_key")
account = client.account.get()

print(f"Plan: {account.subscription.plan}")
print(f"Credits remaining: {account.usage.credits_remaining}")
print(f"Credits limit: {account.usage.credits_limit}")
print(f"Period ends: {account.subscription.current_period_end}")

Configuration

from sudomock import SudoMock

client = SudoMock(
    api_key="sm_your_api_key",           # or SUDOMOCK_API_KEY env var
    base_url="https://api.sudomock.com", # default
    timeout=30.0,                         # default request timeout (seconds)
    render_timeout=120.0,                 # render request timeout (seconds)
    max_retries=3,                        # TOTAL attempts on 429/5xx/network: initial + up to 2 retries (exponential backoff)
)

API Reference

Mockups

Method Description
client.mockups.list(limit=, offset=, name=, created_after=, created_before=, sort=, order=) List mockup templates (filter by name)
client.mockups.get(uuid) Get mockup details
client.mockups.update(uuid, name=) Rename a mockup
client.mockups.delete(uuid) Delete a mockup

Bulk delete (DELETE /mockups/all) is dashboard-only (Bearer/JWT auth) and is intentionally not exposed in this api-key SDK.

Renders

Method Description
client.renders.create(mockup_uuid=, smart_objects=, export_options=, export_label=, is_async=False) Render a mockup (sync Render, or JobAccepted when is_async=True)
client.renders.create_video(mockup_uuid=, smart_objects=, image_url=, duration_seconds=, audio=False, motion=None, advanced_model=None, webhook=None, ...) AI video render (always async, returns JobAccepted). Render mode (mockup_uuid+smart_objects) or raw-image mode (image_url)

Jobs

Method Description
client.jobs.list(kind=, mockup_uuid=, limit=, cursor=) List your async jobs (keyset-paginated, newest first)
client.jobs.get(job_id) Get async job status (queued/running/succeeded/failed)
client.jobs.wait(job_id, poll_interval=2.0, timeout=300.0) Poll until the job reaches a terminal state

PSD

Method Description
client.psd.upload(url=, name=None, is_async=False) Upload a PSD by URL (free; sync Mockup or JobAccepted)

2D Mockups

Method Description
client.ai.create(source_url=, source_base64=, name=, print_areas=, is_async=False, idempotency_key=) Create a 2D mockup (25 credits; sync TwoDMockup by default, or JobAccepted when is_async=True)
client.ai.wait_for_2d_mockup(job_id, poll_interval=2.0, timeout=180.0) Wait for an is_async=True creation and return the full 2D mockup
client.ai.update_2d_print_areas(mockup_id, print_areas) Replace a 2D mockup's print areas (free)
client.ai.render(mockup_uuid=, print_areas=, export_options=) Render artwork onto a 2D mockup (5 credits; returns AIRender with render_uuid)
client.ai.list(limit=, offset=) List your 2D mockups
client.ai.get(mockup_id) Get a 2D mockup
client.ai.delete(mockup_id) Delete a 2D mockup

Account

Method Description
client.account.get() Get account info, credits, subscription

Packages (public)

Method Description
client.packages.plans() List active subscription plans (no auth)
client.packages.pricing() List public pricing (no auth)

Webhook Endpoints

Method Description
client.webhook_endpoints.list() List registered endpoints
client.webhook_endpoints.create(url=, events=, description=None) Register an endpoint (empty events = all)
client.webhook_endpoints.get(uuid) Get an endpoint
client.webhook_endpoints.update(uuid, url=, events=, description=, enabled=) Update an endpoint
client.webhook_endpoints.delete(uuid) Delete an endpoint
client.webhook_endpoints.rotate_secret(uuid) Rotate the signing secret
client.webhook_endpoints.test(uuid) Send a synthetic test delivery
client.webhook_endpoints.events(status=, event_type=, limit=) Deliveries feed across all endpoints
client.webhook_endpoints.deliveries(uuid) List delivery attempts for one endpoint
client.webhook_endpoints.replay_delivery(uuid, delivery_id) Replay one failed delivery
client.webhook_endpoints.replay_failed(uuid) Replay all failed/dead deliveries
verify_webhook_signature(secret, signature, timestamp, raw_body) Verify an inbound HMAC signature (split headers)

Export Options

export_options = {
    "image_format": "webp",  # "webp", "png", "jpg"
    "image_size": 1920,       # max dimension in pixels
    "quality": 95,            # 1-100 (for webp/jpg)
}

Smart Object Configuration

smart_objects = [{
    "uuid": "smart-object-uuid",
    "asset": {
        "url": "https://example.com/design.png",
        "fit": "fill",      # "fill" (default), "contain", "cover"
        "rotate": 0,         # degrees
        "position": {"top": 100, "left": 100},
        "size": {"width": 800, "height": 600},
    },
    "color": {
        "hex": "#FFFFFF",
        "blending_mode": "multiply",
    },
}]

Requirements

License

MIT -- see LICENSE.

MCP Server

SudoMock also offers an official Model Context Protocol (MCP) server, enabling AI assistants like Claude, Cursor, and VS Code Copilot to generate mockups directly.

Links

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sudomock-0.5.0.tar.gz (27.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sudomock-0.5.0-py3-none-any.whl (33.1 kB view details)

Uploaded Python 3

File details

Details for the file sudomock-0.5.0.tar.gz.

File metadata

  • Download URL: sudomock-0.5.0.tar.gz
  • Upload date:
  • Size: 27.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for sudomock-0.5.0.tar.gz
Algorithm Hash digest
SHA256 19d894c63dca133dfd7d3976f9ea8a1c015ed3c290fde977abf1f6dcdbd326aa
MD5 014e7fddd53ffb99b24d79998feaa181
BLAKE2b-256 eacd77d555feaf97fb6ef7dbdb220f71fdf3d2d69b3f2130537a4fddc0144c1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sudomock-0.5.0.tar.gz:

Publisher: ci.yml on sudomock/sudomock-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file sudomock-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: sudomock-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 33.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for sudomock-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0cd58e12c1746592ad3a207a26371114143f57e5212434fae6c38f3962aba955
MD5 357ebc11905eb39a87ad04fc1e8db975
BLAKE2b-256 84e96e625f45e861c314c95d399ea3601d511abed7b4d43cf0df8300363042c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sudomock-0.5.0-py3-none-any.whl:

Publisher: ci.yml on sudomock/sudomock-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page