Discover/corsair.com API
live

corsair.com APIwww.corsair.com

Search and browse Corsair's gaming peripherals and PC components catalog. Get product details, pricing, stock status, variants, and category filters via 3 endpoints.

Endpoints
3
Updated
28d ago
Try it
Page number (1-indexed).
Sort field. Accepted values: relevance, featured, newest_first, popularity, price. Omittin
Search query string (e.g. 'keyboard', 'mouse', 'headset', 'ram').
Number of results per page.
Sort direction. Accepted values: ASC, DESC.
api.parse.bot/scraper/bdabfdf0-b966-49ba-a05c-9102fd086d64/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/bdabfdf0-b966-49ba-a05c-9102fd086d64/search_products?page=2&query=mouse&page_size=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Search Corsair products by keyword. Returns paginated results with product details, available filters (aggregations), and sort options. Filters returned in the response can be used to refine searches via the list_products endpoint.

Input
ParamTypeDescription
pageintegerPage number (1-indexed).
sortstringSort field. Accepted values: relevance, featured, newest_first, popularity, price. Omitting returns results sorted by relevance.
queryrequiredstringSearch query string (e.g. 'keyboard', 'mouse', 'headset', 'ram').
page_sizeintegerNumber of results per page.
sort_directionstringSort direction. Accepted values: ASC, DESC.
Response
{
  "type": "object",
  "fields": {
    "items": "array of product objects with name, sku, url_key, brand, stock_status, not_sellable, badge, image_url, small_image_url, categories, and price",
    "filters": "array of filter/aggregation objects with label, attribute_code, and options (each with label, value, count)",
    "total_count": "integer - total number of matching products",
    "total_pages": "integer - total number of pages",
    "current_page": "integer - current page number",
    "sort_options": "array of objects with label and value fields representing available sort options"
  },
  "sample": {
    "data": {
      "items": [
        {
          "sku": "CH-9413641-WW",
          "name": "MM300 PRO Premium Spill-Proof Cloth Gaming Mouse Pad",
          "badge": "BESTSELLER",
          "brand": "corsair",
          "price": {
            "currency": "USD",
            "final_price": 32.99,
            "regular_price": 32.99,
            "discount_amount": 0
          },
          "url_key": "mm300-pro-premium-spill-proof-cloth-gaming-mouse-pad-extended-ch-9413641-ww",
          "image_url": "https://res.cloudinary.com/corsair-pwa/image/upload/c_scale%2Cq_auto%2Cw_96/products/Gaming-Mousepads/base-mm300-pro-config/Gallery/MM300_PRO_Extended_01.png",
          "categories": [
            "Gaming Mouse Pads",
            "Extended Mouse Pads"
          ],
          "not_sellable": false,
          "stock_status": "IN_STOCK",
          "small_image_url": "https://res.cloudinary.com/corsair-pwa/image/upload/c_scale%2Cq_auto%2Cw_96/products/Gaming-Mousepads/base-mm300-pro-config/Gallery/MM300_PRO_Extended_01.png"
        }
      ],
      "filters": [
        {
          "label": "Features & Availability",
          "options": [
            {
              "count": 5,
              "label": "Show In Stock Only",
              "value": "stock_status:true"
            }
          ],
          "attribute_code": "features_and_availability"
        }
      ],
      "total_count": 272,
      "total_pages": 91,
      "current_page": 1,
      "sort_options": [
        {
          "label": "Relevance",
          "value": "relevance"
        },
        {
          "label": "Featured",
          "value": "featured"
        }
      ]
    },
    "status": "success"
  }
}

About the corsair.com API

The Corsair API exposes 3 endpoints to search, browse, and retrieve detailed data from Corsair's product catalog, covering gaming keyboards, mice, headsets, monitors, and PC components. The search_products endpoint accepts keyword queries and returns paginated product listings alongside available filters and sort options. The get_product_detail endpoint returns variant-level pricing, stock status, and media for a specific SKU.

Searching and Browsing Products

The search_products endpoint accepts a required query string (e.g. 'keyboard', 'ram', 'headset') and returns an array of items, each containing name, sku, url_key, brand, stock_status, badge, image_url, and categories. The response also includes a filters array with attribute_code, label, and options (each with a count) — these filter objects can be passed directly into list_products to narrow results. Pagination is controlled via page and page_size parameters, with total_count and total_pages returned in every response.

Browsing by Category

The list_products endpoint accepts a category parameter using URL key values such as keyboards, mousepads, monitors, hubs-docks, and data-stor. An in_stock_only boolean flag filters out unavailable products. Both search_products and list_products support sort values of featured, newest_first, popularity, and price, with an optional sort_direction of ASC or DESC. The sort_options field in each response enumerates the options accepted by that specific context.

Product Detail

The get_product_detail endpoint takes a sku obtained from search or list results and returns the full product record: price object with regular_price, final_price, currency, and discount_amount; a variants array for ConfigurableProduct types with per-variant sku, stock_status, not_sellable, and price; categories with url_path; and a badge label (e.g. BESTSELLER, NEW). For simple products, variants is null.

Common use cases
  • Build a Corsair price tracker that monitors final_price and discount_amount changes for specific SKUs over time.
  • Aggregate in-stock gaming peripherals by category using list_products with in_stock_only: true and the keyboards or mousepads category key.
  • Power a product comparison tool by fetching variant-level pricing and stock_status from get_product_detail for ConfigurableProduct SKUs.
  • Index Corsair's full catalog for a deals site by paginating through list_products and surfacing items where badge is BESTSELLER or NEW.
  • Populate an affiliate storefront with product names, image_url, and url_key values pulled from search_products keyword queries.
  • Build a gaming gear recommendation engine using filters returned by search_products to surface attribute-based refinements to end users.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Corsair have an official developer API?+
Corsair does not publish a public developer API for its product catalog. This Parse API provides structured access to catalog data that is not otherwise available programmatically.
What does `get_product_detail` return for configurable products versus simple products?+
For ConfigurableProduct types, the variants field contains an array of objects, each with its own sku, name, stock_status, not_sellable, and price. For SimpleProduct types, variants is null. The top-level price object on both types includes regular_price, final_price, currency, and discount_amount.
Can I retrieve customer reviews or ratings for Corsair products?+
Not currently. The API covers product metadata, pricing, stock status, variants, and category structure. It does not expose review text, star ratings, or review counts. You can fork this API on Parse and revise it to add a product reviews endpoint if that data is needed.
How do the filters returned by `search_products` work with `list_products`?+
Each object in the filters array includes an attribute_code and an options list. The value field within each option can be used as a filter parameter in list_products. The count on each option indicates how many products in the current result set match that attribute value.
Does the API cover Corsair regional storefronts or non-US pricing?+
The API returns pricing in the currency exposed by the default catalog. Regional storefronts or country-specific pricing and availability are not currently covered. You can fork this API on Parse and revise it to target a specific regional catalog endpoint if you need localized pricing.
Page content last updated . Spec covers 3 endpoints from www.corsair.com.
Related APIs in EcommerceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.