Discover/BurdaStyle API
live

BurdaStyle APIburdastyle.com

Access BurdaStyle sewing patterns, magazines, blog posts, and subscriptions via API. Filter by category, level, and keyword. 7 endpoints.

Endpoint health
verified 4d ago
get_pattern_detail
get_blog_posts
search_patterns
get_patterns_list
get_pattern_categories
7/7 passing latest checkself-healing
Endpoints
7
Updated
26d ago

What is the BurdaStyle API?

The BurdaStyle API provides structured access to sewing patterns, magazines, blog posts, and subscription plans across 7 endpoints. The get_pattern_detail endpoint returns per-pattern data including SKU, price, difficulty attributes, available PDF format types, and a material consumption table. You can also search patterns by keyword, browse category taxonomies, and retrieve current subscription plan details.

Try it
Page number for pagination.
Sort order for results.
Difficulty level filter (1-5).
Items per page.
Category slug.
api.parse.bot/scraper/49587bde-b3a9-4254-9ffe-d7875dd89b23/<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/49587bde-b3a9-4254-9ffe-d7875dd89b23/get_patterns_list?page=1&sort=new&level=1&limit=5&category=women' \
  -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 burdastyle-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.burdastyle_api import BurdaStyle, PatternSummary, Pattern, Category, Magazine, BlogPost, Subscription, PatternCategory, Sort

client = BurdaStyle()

# Search for dress patterns sorted by newest
for pattern in client.patternsummaries.search(query="blouse", limit=3):
    print(pattern.name, pattern.price, pattern.url)

# List women's patterns filtered by difficulty level
for pattern in client.patternsummaries.list(category=PatternCategory.WOMEN, sort=Sort.PRICE, level=2, limit=5):
    detail = pattern.details()
    print(detail.name, detail.sku, detail.price, detail.description)

# Browse categories and subcategories
for cat in client.categories.list():
    print(cat.name, cat.url)
    for sub in cat.subcategories:
        print(sub.name, sub.url)

# List magazine issues
for mag in client.magazines.list(brand="burda-style", limit=3):
    print(mag.name, mag.price, mag.image)

# Get blog posts
for post in client.blogposts.list(limit=5):
    print(post.title, post.url)

# Get subscription plans
for sub in client.subscriptions.list():
    print(sub.name, sub.price, sub.description)
All endpoints · 7 totalmissing one? ·

Get a paginated list of sewing patterns by category. Supports filtering by difficulty level and sorting by newness, price, or name. Each page returns pattern items with name, price, image URL, and product URL. Pagination via page number; total_count reflects the full matching set.

Input
ParamTypeDescription
pageintegerPage number for pagination.
sortstringSort order for results.
levelintegerDifficulty level filter (1-5).
limitintegerItems per page.
categorystringCategory slug.
Response
{
  "type": "object",
  "fields": {
    "items": "array of pattern summary objects with name, url, price, image, and is_new fields",
    "total_count": "integer total number of patterns in this category"
  },
  "sample": {
    "data": {
      "items": [
        {
          "url": "https://www.burdastyle.com/denim-skirt-105-burda-style-06-26-pdf-pattern",
          "name": "denim Skirt 105 | Burda Style 06/26 | PDF Pattern",
          "image": "https://www.burdastyle.com/cdn-cgi/image/width=360,height=360/media/catalog/product/B/S/BS2606_105_Heft_1.jpg",
          "price": "$11.99",
          "is_new": false
        }
      ],
      "total_count": 4303
    },
    "status": "success"
  }
}

About the BurdaStyle API

Pattern Browsing and Search

The get_patterns_list endpoint returns paginated pattern listings filtered by category (women, men, kids, free, easy), level (1–5 difficulty), and sort order (new, price, name). Each item in the items array includes name, url, price, image, and an is_new flag. The total_count field tells you the total number of matching patterns, useful for building pagination controls. search_patterns works the same way but accepts a query string, letting you find patterns by keyword such as "dress" or "blouse".

Pattern Detail

Pass any pattern's full URL to get_pattern_detail to retrieve the complete record: sku, name, image, price, description, a structured attributes object (brand, sizes, level, and similar key-value pairs), a categories array, the pdf_link_types available for download, and a material_consumption table represented as an array of row arrays. This is the primary endpoint if you need to display or index full pattern specs.

Categories, Magazines, Blog, and Subscriptions

get_pattern_categories returns the full navigation taxonomy — category names, URLs, and nested subcategories — without requiring any input. get_magazines_list is paginated and accepts a brand slug; the confirmed working value is burda-style. get_blog_posts returns post title and url for recent BurdaStyle editorial content. get_subscriptions returns all available plan objects, each with name, description, price, url, and image.

Reliability & maintenanceVerified

The BurdaStyle API is a managed, monitored endpoint for burdastyle.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when burdastyle.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 burdastyle.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
7/7 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 sewing pattern search tool filtered by difficulty level and category using get_patterns_list with level and category params
  • Index full pattern specs including material consumption tables and PDF types via get_pattern_detail for a sewing project planner
  • Aggregate BurdaStyle keyword search results with search_patterns to power autocomplete or pattern recommendation features
  • Render a navigation menu or category browser from the full taxonomy returned by get_pattern_categories
  • Display current BurdaStyle subscription options with prices and descriptions using get_subscriptions
  • Monitor new pattern releases by polling get_patterns_list with sort=new and checking the is_new flag on items
  • Syndicate BurdaStyle editorial content titles and links using get_blog_posts for a sewing community feed
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 BurdaStyle have an official developer API?+
BurdaStyle does not publish a public developer API or documentation for third-party integrations. This Parse API exposes the same pattern, magazine, and subscription data available on the site.
What does `get_pattern_detail` return beyond basic listing data?+
get_pattern_detail returns fields not present in list or search results: sku, description, a structured attributes object (brand, sizes, difficulty level, and similar), categories array, pdf_link_types (the available PDF format options), and a material_consumption table as an array of row arrays. You pass the full pattern URL as the required url input.
Are there any known limitations with the `get_magazines_list` endpoint?+
Only the burda-style brand slug is confirmed to return results. Other brand slug values may return errors. When in doubt, omit the brand parameter or use burda-style explicitly.
Does the API expose user reviews or community ratings for patterns?+
Not currently. The API covers pattern specs, attributes, material consumption, categories, and pricing. It does not return user reviews, community ratings, or sewn project photos. You can fork this API on Parse and revise it to add an endpoint targeting pattern review or community data.
Can I filter patterns by specific size range or fabric type?+
List and search endpoints support filtering by category, level, sort, page, and limit, but not by size range or fabric type directly. Size and fabric information appears in the attributes object returned by get_pattern_detail for individual patterns. You can fork this API on Parse and revise it to add server-side filtering on those attribute fields.
Page content last updated . Spec covers 7 endpoints from burdastyle.com.
Related APIs in EcommerceSee all →
moodfabrics.com API
Search and browse Mood Fabrics' extensive catalog of fabrics, notions, and accessories with detailed product information including fiber content, weight, and pattern details. Discover blog posts, view color variants, filter collections, and find sale items all from one convenient integration.
stylishop.com API
Browse and search stylishop.com's complete fashion catalog, including products, categories, brands, reviews, and trending data to discover new arrivals and sale items. Get product details, size guides, autocomplete suggestions, and trending search insights to enhance your shopping experience.
stories.com API
Search & Other Stories' catalog to find products by name or category, and retrieve detailed information including pricing, images, available sizes, colors, and materials for each item. Get comprehensive product details to compare styles, check inventory across variations, and make informed shopping decisions.
asos.com API
Search and browse ASOS's fashion catalog to discover products across women's and men's categories, view real-time pricing and stock information, and find trending or sale items. Get detailed product information, explore similar items, and discover new arrivals and brands all in one place.
folksy.com API
Search and browse handmade products on Folksy by category, subcategory, or shop, and access detailed product information including pricing and availability. Discover sales and special offers while exploring artisan shops and their complete listings.
magzter.com API
Browse and search millions of magazines, newspapers, and stories from Magzter's digital library, then dive into specific publications, issues, and articles by category. Discover detailed information about any magazine or newspaper edition to find exactly what you want to read.
smashingmagazine.com API
Access Smashing Magazine's library of articles, books, ebooks, newsletters, and events with powerful search and filtering capabilities. Browse by category, discover related content, explore author profiles, and stay updated with the latest design and web development resources.
backcountry.com API
backcountry.com API