Discover/ColorFabb API
live

ColorFabb APIcolorfabb.com

Access ColorFabb's full 3D printing filament catalog via API. Retrieve material specs, pricing, RAL colors, search results, and Yotpo review ratings.

Endpoint health
verified 4d ago
get_filament_categories
get_filament_detail
search_filaments
get_filament_reviews
get_ral_colors
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the ColorFabb API?

The ColorFabb API covers 6 endpoints for extracting filament product data from colorfabb.com, including material specifications, pricing, stock status, and customer review ratings. The get_filament_detail endpoint returns per-product fields like SKU, printing advice, and specifications for any filament slug. You can also enumerate the full catalog with get_all_filaments, filter by material category ID, or search by keyword — all without managing a browser session.

Try it
Page number (1-based).
Material category ID to filter by (e.g. '17285' for PLA High Speed Pro). IDs available from get_filament_categories endpoint.
api.parse.bot/scraper/0189a1d8-2fdf-4338-9a15-fd03376cde15/<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/0189a1d8-2fdf-4338-9a15-fd03376cde15/get_all_filaments?page=1&material=17297' \
  -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 colorfabb-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.

"""Walkthrough: ColorFabb SDK — browse filaments, search, drill into details and reviews."""
from parse_apis.colorfabb_filament_api import ColorFabb, FilamentNotFound

client = ColorFabb()

# List material categories to find filter IDs
categories = client.categories.list(limit=5)
for cat in categories:
    print(cat.name, cat.id, cat.count)

# Search for TPU filaments — single-page autocomplete results
result = client.filaments.search(query="TPU", limit=3).first()
if result:
    # Drill into full detail via the search result
    detail = result.details()
    print(detail.name, detail.sku, detail.price_excl_tax)

# List all filaments (paginated), take one and check reviews
filament = client.filaments.list(limit=1).first()
if filament:
    rating = filament.reviews.get()
    print(filament.name, filament.price_incl_tax, rating.total_reviews, rating.average_score)

# Browse RAL color filaments
for ral in client.ralcolors.list(limit=3):
    print(ral.name, ral.slug, ral.price_excl_tax)

# Typed error handling for a missing product
try:
    client.filaments.get(slug="nonexistent-slug-xyz")
except FilamentNotFound as exc:
    print(f"Not found: {exc.slug}")

print("exercised: categories.list / filaments.search / details / filaments.list / reviews.get / ralcolors.list / filaments.get")
All endpoints · 6 totalmissing one? ·

Retrieve a paginated list of all filaments with basic details and configurations. Returns up to 12 products per page. Supports filtering by material category ID. Paginate by incrementing the page parameter until products array is empty or current_page exceeds total_count / 12.

Input
ParamTypeDescription
pageintegerPage number (1-based).
materialstringMaterial category ID to filter by (e.g. '17285' for PLA High Speed Pro). IDs available from get_filament_categories endpoint.
Response
{
  "type": "object",
  "fields": {
    "products": "array of product objects with name, url, slug, price_incl_tax, price_excl_tax, id, config, stock_status, yotpo_id",
    "total_count": "integer total number of products matching the filter",
    "current_page": "integer current page number"
  },
  "sample": {
    "data": {
      "products": [
        {
          "id": "1525",
          "url": "https://colorfabb.com/varioshore-tpu-black",
          "name": "VARIOSHORE TPU BLACK",
          "slug": "varioshore-tpu-black",
          "yotpo_id": "1525",
          "stock_status": "In Stock:  make selection",
          "price_excl_tax": "€44.79",
          "price_incl_tax": "€54.20"
        }
      ],
      "total_count": 533,
      "current_page": 1
    },
    "status": "success"
  }
}

About the ColorFabb API

Catalog and Category Browsing

The get_all_filaments endpoint returns paginated product listings — 12 per page — with fields including name, slug, price_incl_tax, price_excl_tax, stock_status, id, config, and yotpo_id. You can narrow results with the optional material parameter, which accepts a material category ID such as 17285 for PLA High Speed Pro. To discover valid category IDs and their associated product counts, call get_filament_categories first — it returns an array of objects with name, id, and count. The get_ral_colors endpoint mirrors the same response shape specifically for RAL color filaments.

Product Detail and Specifications

For a single product, get_filament_detail accepts a URL slug like varioshore-tpu-black and returns the full data set: sku, name, description, price_excl_tax, price_incl_tax, a specifications object with key-value pairs (material properties, diameter, spool weight, and similar fields), and a printing_advice object covering parameters such as recommended nozzle temperature and print speed. The options array is present in the response but is often empty.

Search and Review Data

search_filaments accepts a query string (e.g. PLA, black, TPU) and returns matching products with sku, name, description, url, image_url, price, and slug, along with a total_items count. For review data, get_filament_reviews takes the product_id field (available as id from get_all_filaments or get_ral_colors) and returns a bottomline object from Yotpo with totalReviews, averageScore, totalOrganicReviews, and organicAverageScore. Individual review text and reviewer details are not included.

Reliability & maintenanceVerified

The ColorFabb API is a managed, monitored endpoint for colorfabb.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when colorfabb.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 colorfabb.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
6/6 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 filament comparison tool using specifications from get_filament_detail across multiple slugs
  • Monitor stock availability by polling stock_status from get_all_filaments for specific material categories
  • Aggregate average ratings from get_filament_reviews to rank filaments within a category by user score
  • Compile a cross-category price sheet using price_excl_tax and price_incl_tax fields from paginated catalog results
  • Power a search autocomplete feature using keyword results from search_filaments with image and URL fields
  • Enumerate all RAL color variants with stock status using get_ral_colors for color-matching workflows
  • Track category product counts over time using the count field from get_filament_categories
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 ColorFabb have an official public developer API?+
ColorFabb does not publish a public developer API. This Parse API provides structured access to product data, specifications, pricing, and review summaries from the colorfabb.com catalog.
How do I filter filaments by material type in get_all_filaments?+
Pass a material category ID in the material parameter. To find valid IDs, call get_filament_categories first — it returns each category's id alongside its name and product count. For example, the PLA High Speed Pro category uses ID 17285.
Does get_filament_reviews return individual review text and reviewer names?+
No — get_filament_reviews returns only aggregate Yotpo data: totalReviews, averageScore, totalOrganicReviews, and organicAverageScore. Individual review content and reviewer details are not currently exposed. You can fork this API on Parse and revise it to add an endpoint that fetches per-review text.
What are the pagination limits for catalog endpoints?+
Both get_all_filaments and get_ral_colors return 12 products per page. The response includes total_count and current_page so you can calculate total pages. There is no parameter to change page size — you iterate using the page input.
Does the API expose filament color variants or spool size options for a product?+
The options array is present in get_filament_detail responses but is typically empty. Variant-level data such as distinct color swatches or spool weight options per SKU is not currently broken out as structured fields. You can fork this API on Parse and revise it to extract variant data from individual product pages.
Page content last updated . Spec covers 6 endpoints from colorfabb.com.
Related APIs in EcommerceSee all →
matterhackers.com API
Search and browse MatterHackers' 3D printing filament catalog to find products by material type, view detailed specifications, pricing, and discover available collections. Get comprehensive product information to compare filaments and make informed purchasing decisions.
furniture.com API
Search and browse Furniture.com's product catalog by keywords, then narrow results using filters like color, material, style, type, and brand. Sort by price or ratings and navigate through results with pagination to find the perfect furniture for your needs.
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.
makerworld.com API
Search and discover 3D models on MakerWorld.com. Browse paginated listings or retrieve comprehensive details about specific designs, including titles, preview images, tags, creator info, print profiles, and filament requirements.
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.
alternate.be API
Search for products on Alternate Belgium and instantly access live prices, stock availability, technical specifications, customer reviews, and current deals across their entire catalog. Browse their complete category structure to find exactly what you need and compare products before making a purchase decision.
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.
blendermarket.com API
Browse and search Blender Market (Superhive) to discover 3D assets, add-ons, and creator tools. Access detailed product information, reviews, FAQs, documentation, and creator profiles. Filter by category, sort results, and explore current sales.