Skip to main content

SudoMock Python SDK

Official Python client for the SudoMock Mockup Generator API.

Generate photorealistic product mockups from PSD templates or SudoAI 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())

SudoAI 2D Rendering

Render artwork onto a SudoAI 2D mockup -- a flat product photo whose print areas were defined in the dashboard editor. List your 2D mockups, then render into their print areas (costs 5 credits per render).

from sudomock import SudoMock

client = SudoMock(api_key="sm_your_api_key")

# Find a 2D mockup and its print areas
two_d = client.ai.list()
mockup = two_d.mockups[0]

render = client.ai.render(
    mockup_uuid=mockup.mockup_id,
    print_areas=[{
        "uuid": "print-area-uuid",                 # from the 2D mockup
        "artwork_url": "https://example.com/your-design.png",
        # or a flat color: "color": "#FF0000"
    }],
)
print(render.url)

# Get / delete a 2D mockup
client.ai.get(mockup.mockup_id)
client.ai.delete(mockup.mockup_id)

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)

SudoAI 2D Mockups

Method Description
client.ai.render(mockup_uuid=, print_areas=, export_options=) Render artwork onto a 2D mockup (5 credits)
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.3.2.tar.gz (21.9 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.3.2-py3-none-any.whl (30.4 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for sudomock-0.3.2.tar.gz
Algorithm Hash digest
SHA256 643d98baa025115873f81685d698e53e8185b51e3e8a3f3b60d2c7807484ba02
MD5 e24068ef03ed6f734d61ece56267b8dc
BLAKE2b-256 784f3c4914a8fdc75f26649f9af902ee8722e872537bf7719a11ff231a83d4c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for sudomock-0.3.2.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.3.2-py3-none-any.whl.

File metadata

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

File hashes

Hashes for sudomock-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b9ec52545bd671b05578f6973b196088b8c234bd1a3ee414c8058236060fc56b
MD5 bfc27d0ce3731eea5d4886862f6ed54a
BLAKE2b-256 9f9e93c60b4165b6736e3c87812c521b4a69afb0248318a57b1db917c00a4e96

See more details on using hashes here.

Provenance

The following attestation bundles were made for sudomock-0.3.2-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