Discover/MOO API
live

MOO APImoo.com

Access MOO.com product categories, pricing by quantity tier, keyword search, and Trustpilot ratings via 5 structured endpoints.

Endpoint health
verified 4d ago
get_product_categories
get_all_products_list
search_products
get_trustpilot_rating
get_product_pricing
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the MOO API?

The MOO.com API gives developers structured access to 5 endpoints covering product discovery, quantity-tier pricing, keyword search, and Trustpilot reputation data from the MOO.com US store. The get_product_pricing endpoint returns delivery options with retail amount, shipping cost, tax, order total, and turnaround days for any product-and-quantity combination, while search_products returns paginated hits with titles, descriptions, categories, and images.

Try it

No input parameters required.

api.parse.bot/scraper/2f0ba948-33fa-44e8-9bda-53414d397603/<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/2f0ba948-33fa-44e8-9bda-53414d397603/get_product_categories' \
  -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 moo-com-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.moo_com_scraper_api import Moo, Product, SearchHit, DeliveryOption, TrustpilotRating, Quantity

moo = Moo()

# List all products and get pricing for the first business card
for product in moo.products.list(limit=5):
    print(product.id, product.name, product.category)
    pricing = product.pricing(quantity=Quantity.PACK_50)
    for option in pricing.delivery_options:
        print(option.retail_amount, option.shipping_amount, option.order_total, option.turnaround_days)

# Search for stickers
for hit in moo.searchhits.search(query="stickers", limit=10):
    print(hit.title, hit.product_category, hit.url)

# Check Trustpilot rating
rating = moo.trustpilotratings.get()
print(rating.stars, rating.total_reviews, rating.profile_url)
All endpoints · 5 totalmissing one? ·

Returns the list of all product categories available on MOO.com US store. Each category contains an id, name, and URL path. Categories are static and cover all product lines (Business Cards, Postcards, Stickers & Labels, Flyers, Notecards, Greeting Cards, Letterheads, Accessories).

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "categories": "array of category objects each containing id, name, and url"
  },
  "sample": {
    "data": {
      "categories": [
        {
          "id": "business-cards",
          "url": "/us/business-cards",
          "name": "Business Cards"
        },
        {
          "id": "postcards",
          "url": "/us/postcards",
          "name": "Postcards"
        },
        {
          "id": "stickers",
          "url": "/us/stickers",
          "name": "Stickers & Labels"
        },
        {
          "id": "flyers",
          "url": "/us/flyers",
          "name": "Flyers"
        },
        {
          "id": "notecards",
          "url": "/us/notecards",
          "name": "Notecards"
        },
        {
          "id": "greeting-cards",
          "url": "/us/greeting-cards",
          "name": "Greeting Cards"
        },
        {
          "id": "letterheads",
          "url": "/us/letterheads",
          "name": "Letterheads"
        },
        {
          "id": "accessories",
          "url": "/us/accessories",
          "name": "Accessories"
        }
      ]
    },
    "status": "success"
  }
}

About the MOO API

Product Discovery

get_product_categories returns the full list of category objects — each with an id, name, and url path — for the MOO.com US store. get_all_products_list extends this by returning every product available on the site, including each product's id, name, and category. These two endpoints together give you a complete map of the catalog and supply the product_id values required by the pricing endpoint.

Pricing and Delivery Options

get_product_pricing accepts a product_id (e.g. businesscard_classic, postcard_matte_single) and an optional quantity parameter in packs|size format — for example, 1|50 for one pack of 50. The response includes a deliveryOptions array where each option carries retailAmount, shippingAmount, taxAmount, orderTotal, and turnaroundDays, plus a showTaxColumn boolean indicating whether tax is surfaced in the UI. This makes it straightforward to compare delivery tiers for a given product and quantity.

Search and Reputation

search_products takes a query string and an optional zero-based page integer, returning up to 20 hits per page. Each hit includes a product URL, title, description, category, and image. The response envelope also carries nbHits, nbPages, and hitsPerPage for building paginated interfaces. get_trustpilot_rating returns MOO.com's current Trustpilot stars, trustScore, displayName, numberOfReviews, and a per-star review count breakdown, along with a link to the Trustpilot profile.

Reliability & maintenanceVerified

The MOO API is a managed, monitored endpoint for moo.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when moo.com 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 moo.com 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
4d ago
Latest check
5/5 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 product comparison tool using quantity-tier pricing from get_product_pricing across multiple product IDs.
  • Index MOO's full catalog by combining get_product_categories and get_all_products_list for a custom search or recommendation interface.
  • Display live MOO.com Trustpilot star ratings and review counts on a print procurement platform using get_trustpilot_rating.
  • Implement keyword-driven product discovery pages using paginated results from search_products.
  • Monitor delivery cost and turnaround day changes across quantity tiers for budget-planning tools.
  • Populate a product dropdown in a quoting tool by pulling all valid product_id values from get_all_products_list.
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 MOO.com have an official developer API?+
MOO.com does not publish a public developer API. Their site is consumer-facing, and no documented API for product data or pricing is available to third-party developers.
What does the `quantity` parameter in `get_product_pricing` accept?+
The quantity parameter uses a packs|size format where packs is the number of packs and size is the number of items per pack. For example, 1|50 means one pack of 50. If omitted, the endpoint returns pricing for the default quantity tier. Valid product IDs to pair with this can be discovered via get_all_products_list.
Does the search endpoint return pricing data alongside product results?+
No. search_products returns product URLs, titles, descriptions, categories, and images — not pricing. To get pricing for a search result, take the product ID from get_all_products_list and pass it to get_product_pricing. You can fork this API on Parse and revise it to combine search hits with pricing in a single response.
Is review content (individual Trustpilot reviews, text, or reviewer names) exposed?+
Not currently. get_trustpilot_rating covers aggregate data: star rating, trust score, total review count, and per-star breakdown. Individual review text and metadata are not returned. You can fork the API on Parse and revise it to add an endpoint that fetches individual review content.
Does this API cover MOO.com stores outside the United States?+
The current endpoints target the MOO.com US store. Pricing, product availability, and category structure for UK or EU storefronts are not covered. You can fork this API on Parse and revise it to point at a different regional store.
Page content last updated . Spec covers 5 endpoints from moo.com.
Related APIs in EcommerceSee all →
trustpilot.com API
Access company reviews, ratings, and user profiles from Trustpilot to research businesses, compare ratings across categories, and analyze customer feedback and company responses. Find detailed company overviews and review summaries to make informed decisions about products and services.
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.
aliexpress.com API
Search for products across AliExpress and instantly access detailed information including product specs, customer reviews, and pricing to make informed purchasing decisions. Browse through product categories and retrieve complete product data directly from URLs to compare options and find exactly what you're looking for.
uk.trustpilot.com API
Access Trustpilot reviews, company ratings, and performance insights by searching companies, filtering reviews by date range, and discovering top mentions and similar businesses. Browse categories, find the best-reviewed companies, and stay updated with Trustpilot's latest blog content.
miniaturemarket.com API
Search for miniature and tabletop gaming products, browse items by category, and access detailed product information including customer reviews and current deals from Miniature Market. Find exactly what you need with comprehensive product listings and real-time pricing data to make informed purchasing decisions.
mercadolibre.com API
Search and retrieve product listings, details, customer reviews, categories, and current deals from MercadoLibre across multiple countries to find the best products and prices. Get comprehensive product information including specifications and user feedback to make informed purchasing decisions.
morrisons.com API
Search and browse Morrisons grocery products, view detailed information like reviews and pricing, discover active promotions, and get personalized product recommendations. Find exactly what you're looking for with category browsing, search suggestions, and similar product recommendations.
cos.com API
Search and browse COS fashion products by name or category to instantly access pricing, product images, and direct links to items. Retrieve detailed information about specific products including descriptions, availability, and pricing to compare styles and make informed shopping decisions.