Discover/Gamma API
live

Gamma APIgamma.be

Access Gamma.be product data via API: search listings with prices, retrieve detailed specs, browse the full category tree, and get autocomplete suggestions.

Endpoint health
verified 1d ago
search_products
get_product_details
get_categories
search_suggestions
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Gamma API?

The Gamma.be API provides 4 endpoints for accessing product and category data from Belgium's Gamma home improvement store. Use search_products to query the catalog and receive paginated results with prices, dimensions, brand, stock status, and variant data. get_product_details returns the full record for a single product including description, multiple images, delivery info, and store availability count.

Try it
Page number (1-indexed)
Results per page (max 50)
Search query for products
Whether to fetch prices. Accepted values: 'true', 'false'. Set to 'false' for faster results.
api.parse.bot/scraper/ef576313-3d76-42a4-95f2-6f9790ea6378/<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/ef576313-3d76-42a4-95f2-6f9790ea6378/search_products?page=1&limit=5&query=verf&include_prices=true' \
  -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 gamma-be-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.

"""Gamma.be product search and detail workflow — bounded, re-runnable."""
from parse_apis.gamma_be_product_api import Gamma, ProductNotFound

client = Gamma()

# Search for paint products — limit caps total items fetched across pages.
for product in client.productsummaries.search(query="verf", limit=3):
    print(product.name, product.price, product.in_stock)

# Drill into the first result for full detail (description, images, store count).
summary = client.productsummaries.search(query="hout", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.description, len(detail.images), detail.stores_available_count)

# Direct point-lookup by product ID.
try:
    product = client.products.get(product_id="224235")
    print(product.name, product.brand, product.price)
except ProductNotFound as exc:
    print(f"Product gone: {exc.product_id}")

# Browse the category tree — single-page list of top-level categories.
for cat in client.categories.list(limit=5):
    print(cat.name, cat.uid, len(cat.sub_categories))

# Autocomplete suggestions for a partial query.
for suggestion in client.suggestions.search(query="tuin", limit=3):
    print(suggestion.query, suggestion.popularity)

print("exercised: productsummaries.search / details / products.get / categories.list / suggestions.search")
All endpoints · 4 totalmissing one? ·

Full-text search over Gamma.be product catalog. Returns paginated product listings with metadata including prices, dimensions, materials, reviews, stock info, and variants. Pagination via page number; each page returns up to `limit` items. Price fetching adds a secondary tile request per batch — set include_prices to 'false' for faster, price-less results.

Input
ParamTypeDescription
pageintegerPage number (1-indexed)
limitintegerResults per page (max 50)
querystringSearch query for products
include_pricesstringWhether to fetch prices. Accepted values: 'true', 'false'. Set to 'false' for faster results.
Response
{
  "type": "object",
  "fields": {
    "query": "search query used",
    "products": "array of product summary objects with product_id, name, brand, price, dimensions, reviews, stock, variants",
    "total_pages": "total number of pages available",
    "current_page": "current page number (1-indexed)",
    "total_results": "total number of matching products",
    "results_per_page": "number of results requested per page"
  }
}

About the Gamma API

Endpoints and Response Fields

The search_products endpoint accepts a query string and returns an array of product objects containing product_id, name, brand, price, dimensions, reviews, stock, and variants. Pagination is controlled with page (1-indexed) and limit (max 50). The response also includes total_results, total_pages, and results_per_page for cursor management. Setting include_prices to 'false' skips price resolution, which reduces response latency when price data is not needed.

Product Details and Variants

get_product_details takes a product_id (the B prefix is stripped automatically) and returns the full product record: name, brand, price, old_price, promotion label, description, images array, url_fr (French-language page URL), and a variants array. Each variant object includes its own product_id, feature, value, and url, making it straightforward to enumerate size, color, or configuration options for a given item.

Category Tree and Autocomplete

get_categories returns the complete category hierarchy as a nested structure. Each node carries name, categoryUrl, uid, and a subCategories array that recurses to arbitrary depth, covering the full taxonomy from top-level departments down to leaf categories. The search_suggestions endpoint accepts a partial query and an optional limit, returning suggestion objects with query, nb_hits, and popularity scores — useful for building search interfaces or understanding query volume distribution across the catalog.

Reliability & maintenanceVerified

The Gamma API is a managed, monitored endpoint for gamma.be — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when gamma.be 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 gamma.be 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
1d 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
  • Monitoring price changes on Gamma.be products by polling search_products or get_product_details for updated price and old_price fields.
  • Building a home improvement product comparison tool using brand, dimensions, and variant data from get_product_details.
  • Mapping the Gamma.be category hierarchy for SEO or navigation purposes using the nested subCategories tree from get_categories.
  • Powering autocomplete in a third-party search UI using nb_hits and popularity scores from search_suggestions.
  • Tracking promotional activity across the catalog by extracting promotion label text and old_price from product records.
  • Syncing Gamma.be stock and delivery information into an internal procurement or inventory system using stock and delivery fields.
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 Gamma.be have an official public developer API?+
Gamma.be does not publish a documented public developer API for third-party use. There is no official API portal or key registration process available to external developers.
What does `search_products` return that `get_product_details` does not?+
search_products returns paginated batch results with total_results and total_pages metadata, suited for browsing or bulk collection. get_product_details returns fields not available in search results — specifically description, the full images array, url_fr, store availability count, and delivery information — for a single product identified by product_id.
Does the API cover Gamma.nl (Netherlands) as well as Gamma.be?+
The API covers only the Belgian Gamma.be store. Product listings, categories, and URLs reflect the .be domain and pricing in EUR. Gamma.nl data is not currently included. You can fork this API on Parse and revise it to target the Dutch domain and its catalog.
Are customer review details such as review text or individual ratings returned?+
Review data is returned as part of the reviews field on product objects from search_products, but full review text and per-reviewer breakdowns are not currently included in the exposed fields. The API covers aggregate review metadata. You can fork it on Parse and revise to add an endpoint that returns individual review content.
What is the maximum number of results returnable per search request?+
The limit parameter on search_products accepts a maximum of 50 results per page. For larger result sets, use the total_pages value in the response to iterate through subsequent pages with the page parameter.
Page content last updated . Spec covers 4 endpoints from gamma.be.
Related APIs in EcommerceSee all →
mediamarkt.be API
Search and browse MediaMarkt Belgium's product catalog to find electronics with detailed specifications, pricing, and available variants across all categories. Get comprehensive product information including descriptions and technical details to compare items before purchase.
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.
megekko.be API
Search and browse the full Megekko product catalog, view detailed specs, pricing, and stock availability. Browse by category, use keyword search to find specific products, or explore shortcut endpoints for popular categories like GPUs and CPUs.
coolblue.be API
Search and browse electronics products from Coolblue Belgium, including CPUs, GPUs, and smartphones, with instant access to detailed specifications, pricing, and availability. Find exactly what you need by category or search query, and check real-time stock and price information across their entire catalog.
megekko.nl API
Search and browse products from Megekko's electronics catalog, getting detailed specifications, pricing, and category information to compare items and find exactly what you're looking for. Explore the full product hierarchy to discover items across all categories and subcategories available on the store.
gamestop.com API
Search GameStop's catalog for games and merchandise, browse products by category, view detailed product information including reviews, and discover what's available—all with seamless access that handles Cloudflare protection automatically.
gap.com API
Search and browse Gap's product catalog by keyword or category, retrieve detailed product information including pricing, available sizes, colors, and customer reviews, get product recommendations, locate nearby Gap retail stores, and explore the full site navigation and category tree.
jumia.com.gh API
Browse and search thousands of products from Jumia Ghana's catalog, view detailed product information, and explore items across different categories. Get real-time search suggestions and instantly access pricing, descriptions, and availability for any item on Ghana's leading e-commerce platform.