Discover/Mixam API
live

Mixam APImixam.co.uk

Access Mixam's full print product catalogue, retrieve configuration schemas (sizes, papers, bindings), and get real-time pricing quotes via 4 API endpoints.

Endpoint health
verified 3d ago
get_product_ids
get_instant_quote
get_product_config
get_all_products_list
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Mixam API?

The Mixam.co.uk API exposes 4 endpoints covering the complete lifecycle of a print enquiry: discover every product in the catalogue via get_all_products_list, resolve internal identifiers with get_product_ids, fetch the full configuration schema including sizes, paper weights, binding types, and lamination options through get_product_config, and retrieve real-time pricing breakdowns with get_instant_quote.

Try it

No input parameters required.

api.parse.bot/scraper/2e9bf3fd-6a90-4a40-8ed6-11936b16e6e3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/2e9bf3fd-6a90-4a40-8ed6-11936b16e6e3/get_all_products_list' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace mixam-co-uk-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.mixam_uk_api import Mixam, Product, ProductIds, ProductConfig, Quote

mixam = Mixam(api_key="YOUR_API_KEY")

# List all available products
for product in mixam.catalogues.list():
    print(product.name, product.slug)

# Get internal IDs for a specific product
booklet = mixam.product("/booklets")
ids = booklet.ids()
print(ids.product_id, ids.sub_product_id)

# Retrieve configuration options using those IDs
config = mixam.productconfigs.get(
    product_id=ids.product_id,
    sub_product_id=ids.sub_product_id,
)
for size in config.standard_sizes:
    print(size.name, size.label, size.width, size.height)

for substrate in config.substrate_types:
    print(substrate.label, substrate.substrate_type)

# Get a pricing quote using the initial specification template
quote = mixam.quotes.create(spec={
    "subProductId": 100009,
    "itemSpecification": config.initial_specification,
    "santaType": "QUOTE",
})
print(quote.total_price, quote.currency, quote.copies)
print(quote.item_description, quote.center, quote.print_type)

for offer in quote.offer_table:
    print(offer.price, offer.days, offer.price_type, offer.is_best_price)
All endpoints · 4 totalmissing one? ·

Retrieve the full catalogue of print products available on Mixam.co.uk. Each product includes its display name, URL slug (used as input for get_product_ids), and full URL. No pagination — returns all products in a single response.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of products",
    "products": "array of product objects with name, slug, and url"
  },
  "sample": {
    "data": {
      "total": 66,
      "products": [
        {
          "url": "https://mixam.co.uk/booklets",
          "name": "Booklets",
          "slug": "/booklets"
        },
        {
          "url": "https://mixam.co.uk/hardcoverbooks",
          "name": "Hardcover Books",
          "slug": "/hardcoverbooks"
        }
      ]
    },
    "status": "success"
  }
}

About the Mixam API

Product Discovery and Identifier Resolution

get_all_products_list returns every print product Mixam offers in a single response — no pagination required. Each entry includes a human-readable name, a slug (e.g. /booklets, /flyers), and a full url. The slug value feeds directly into get_product_ids, which resolves the internal productId and subProductId strings that all downstream endpoints require. These numeric identifiers are not guessable from the slug alone, so this two-step resolution is necessary before querying configuration or pricing.

Configuration Schema

get_product_config accepts product_id and sub_product_id and returns the complete specification matrix for that product. Response fields include standardSizes (format codes and dimensions), substrateTypes (paper types such as Silk, Gloss, and Uncoated, each with weight sub-options), boundMetadata (binding type options, page increments, edge options), coloursMetadata, laminationMetadata for front and cover surfaces, and coverSubstrateTypes. Critically, the response also contains initialSpecification — a pre-filled template object that can be passed directly to get_instant_quote after adjusting the desired options.

Real-Time Pricing

get_instant_quote accepts a spec object structured around Mixam's offer format: top-level keys are subProductId, itemSpecification (containing copies, product, a components array, and bound), and santaType. The response includes an offerTable array listing multiple pricing options, each with price, days, priceType, center, and delivery details. Additional top-level fields — totalPrice, deliveryDate (Unix timestamp in ms), currency, printType, weight, and itemDescription — give a complete picture of the best-value quote for the requested specification.

Reliability & maintenanceVerified

The Mixam API is a managed, monitored endpoint for mixam.co.uk — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when mixam.co.uk changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official mixam.co.uk API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a print cost estimator that pulls live Mixam prices for booklets, flyers, or hardcover books by quantity.
  • Enumerate all available paper weights and sizes for a given product to populate a product configurator UI.
  • Compare delivery timelines across Mixam's print centres by inspecting the offerTable days and center fields.
  • Automate quote generation for a print reseller by programmatically iterating configurations from get_product_config.
  • Extract the full Mixam product catalogue to build a searchable internal directory of available print formats.
  • Validate that a specific binding type and paper combination is supported before submitting an order workflow.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Mixam have an official public developer API?+
Mixam does not publish a documented public developer API. This Parse API provides structured access to product catalogue, configuration, and pricing data from mixam.co.uk.
What does get_instant_quote return beyond a single price?+
get_instant_quote returns an offerTable array with multiple pricing options, each including price, days to delivery, priceType, center (print facility name), and delivery details. It also returns totalPrice, deliveryDate as a millisecond timestamp, currency, printType (e.g. DIGITAL), weight in kg, and an itemDescription string summarising the quoted job.
Does get_all_products_list paginate or require filters?+
No. It takes no inputs and returns the full catalogue in a single response with a total count and a products array. Every product's name, slug, and url are included.
Does the API cover order placement or account management?+
Not currently. The API covers product discovery, configuration schema retrieval, and real-time quote generation. Order submission, account history, and job tracking are not exposed. You can fork it on Parse and revise to add the missing endpoint if Mixam exposes those surfaces.
Can I retrieve quotes for non-UK currencies or delivery regions?+
The API targets mixam.co.uk and returns pricing in GBP. Mixam operates separate regional sites. The current endpoints do not cover other regional storefronts or currencies. You can fork it on Parse and revise to target a different Mixam regional domain.
Page content last updated . Spec covers 4 endpoints from mixam.co.uk.
Related APIs in EcommerceSee all →
mixam.com API
Discover Mixam's full range of printing products and instantly get real-time pricing quotes tailored to your order volume. Compare costs across different quantities to find the best rates for your print job needs.
moo.com API
Retrieve product listings, categories, pricing details, and search results from MOO.com. Access Trustpilot ratings and detailed pricing calculations across product types and quantity tiers.
vistaprint.com API
Search and browse Vistaprint's catalog of 5,800+ products across business cards, promotional items, clothing, signage, and packaging, with instant access to product names, quantities, pricing, and detailed specifications. Filter by category or search for specific items to compare options and get complete product information for your ordering decisions.
amiparis.com API
Browse Ami Paris products, collections, and search their catalog to find items by name or discover new arrivals and signature collections. Access detailed product information including variants, images, and pricing across all available collections.
colorfabb.com API
Access ColorFabb's full filament catalog, including material specifications, pricing, RAL color listings, and customer review ratings. Search and filter products by material type, color, and keyword to compare filaments across categories.
screwfix.com API
Access Screwfix's full product catalog — browse category hierarchies, retrieve paginated product listings with pricing and ratings, fetch detailed product specifications, and search by keyword. Ideal for price monitoring, product research, and catalog analysis.
amazon.co.uk API
Access data from amazon.co.uk.
au.store.bambulab.com API
Monitor Bambu Lab's official store for product prices, sales, and new releases across printers, filaments, and accessories. Search products, view detailed specifications, and track current promotions and homepage announcements to stay updated on inventory changes.