Discover/boat-lifestyle.com API
live

boat-lifestyle.com APIboat-lifestyle.com

Fetch boAt Lifestyle's product catalog via API. List, search, and get detailed product data including prices, variants, and buy links from boat-lifestyle.com.

Endpoints
4
Updated
3mo ago
Try it
Number of products to return (1-250).
Pagination cursor from a previous response's page_info.end_cursor.
api.parse.bot/scraper/f8179fdd-1a5a-47da-bf87-dfbdf049dee1/<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/f8179fdd-1a5a-47da-bf87-dfbdf049dee1/list_products?limit=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

List products with cursor-based pagination. Each item includes product name/title, price range, and buy link (product URL). Returns up to 250 products per page.

Input
ParamTypeDescription
limitintegerNumber of products to return (1-250).
cursorstringPagination cursor from a previous response's page_info.end_cursor.
Response
{
  "type": "object",
  "fields": {
    "items": "array of product objects with id, name, handle, buy_link, available_for_sale, price_range, compare_at_price_range, and price",
    "page_info": "object with has_next_page (boolean) and end_cursor (string or null)"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "gid://shopify/Product/1994163159138",
          "name": "boAt Nirvanaa Uno | Wired Earphone with Mic, 8mm Drivers, Superior Coated Cable, 3.5mm Angled Jack, Secure Fit",
          "price": {
            "amount": 449,
            "currency": "INR",
            "amount_raw": "449.0"
          },
          "handle": "nirvana-uno",
          "buy_link": "https://www.boat-lifestyle.com/products/nirvana-uno",
          "price_range": {
            "max": {
              "amount": 849,
              "currency": "INR",
              "amount_raw": "849.0"
            },
            "min": {
              "amount": 449,
              "currency": "INR",
              "amount_raw": "449.0"
            }
          },
          "available_for_sale": false,
          "compare_at_price_range": {
            "max": {
              "amount": 1990,
              "currency": "INR",
              "amount_raw": "1990.0"
            },
            "min": {
              "amount": 1990,
              "currency": "INR",
              "amount_raw": "1990.0"
            }
          }
        }
      ],
      "page_info": {
        "end_cursor": "eyJsYXN0X2lkIjoyMTU5MTQwNDcwODgyLCJsYXN0X3ZhbHVlIjoyMTU5MTQwNDcwODgyLCJvZmZzZXQiOjR9",
        "has_next_page": true
      }
    },
    "status": "success"
  }
}

About the boat-lifestyle.com API

This API provides 4 endpoints for accessing boAt Lifestyle's product catalog from boat-lifestyle.com. Use list_products to page through up to 250 products at a time with cursor-based pagination, search_products to query by keyword or title, and get_product_by_handle to retrieve full product detail including variants, tags, description, and price range for any individual item.

Endpoints and Data Coverage

The API exposes four endpoints covering boAt Lifestyle's full consumer electronics catalog — earbuds, headphones, smartwatches, speakers, cables, and more. list_products accepts a limit (1–250) and an optional cursor for pagination, returning arrays of product objects each containing id, name, handle, buy_link, available_for_sale, price_range, compare_at_price_range, and price. page_info in the response carries has_next_page and end_cursor to step through the full catalog.

Searching and Bulk Fetching

search_products takes a required query parameter supporting simple keywords (e.g., earbuds) or field-scoped terms like title:airdopes, and returns the same product object shape plus an echoed query field. For bulk collection, get_all_products auto-paginates internally and accepts max_items, max_pages, page_size, and delay_s to control fetch behavior. Its response includes a summary object with count, pages_fetched, has_next_page, next_cursor, truncated, and truncation_reason — useful for knowing exactly where a run stopped.

Product Detail

get_product_by_handle fetches a single product using the handle from the product URL path (e.g., nirvana-uno from /products/nirvana-uno). This endpoint adds description, tags, and a full variants array of up to 100 entries, each with its own price and option values — making it the right endpoint when variant-level pricing or product copy is needed.

Common use cases
  • Build a price comparison tool across boAt product lines using price_range and compare_at_price_range fields.
  • Monitor product availability changes using the available_for_sale field from list_products or get_all_products.
  • Populate an affiliate site with product names, buy links, and prices by paginating the full catalog with get_all_products.
  • Search for specific product categories (e.g., 'smartwatch' or 'title:rockerz') using search_products query syntax.
  • Extract variant-level pricing and option combinations from get_product_by_handle for a product configurator.
  • Track catalog size and new product additions over time by comparing count from get_all_products summary across runs.
  • Sync boAt product handles and metadata into an internal database using cursor-based pagination from list_products.
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 boAt Lifestyle have an official developer API?+
boAt Lifestyle does not publish a public developer API or API documentation. This Parse API provides structured access to their product catalog data.
What does get_product_by_handle return that the other endpoints don't?+
get_product_by_handle is the only endpoint that returns description, tags, and a full variants array (up to 100 entries). The list, search, and bulk endpoints return summary-level pricing (price_range, compare_at_price_range, price) and availability, but no per-variant data or product description text.
How does cursor pagination work across endpoints?+
list_products and search_products return a page_info object containing end_cursor and has_next_page. Pass the end_cursor value as the cursor input on the next call to fetch the following page. get_all_products handles this loop internally, but also accepts a starting cursor if you want to resume from a known position.
Does the API return customer reviews or ratings for products?+
Not currently. The API covers product names, prices, variants, availability, tags, descriptions, and buy links. You can fork this API on Parse and revise it to add an endpoint targeting review data if the source exposes it.
Are product images returned by any endpoint?+
Not currently. The response fields across all four endpoints cover pricing, availability, variants, descriptions, and handles, but do not include image URLs. You can fork this API on Parse and revise it to add image fields to the product objects.
Page content last updated . Spec covers 4 endpoints from boat-lifestyle.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.
boAt Lifestyle API – Products, Prices & Variants · Parse