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
4mo 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 →
boats.com API
Search millions of yacht and boat listings by your preferred criteria, then view detailed specifications, pricing, and direct seller contact information for any boat that interests you. Find your perfect vessel with comprehensive boat data all in one place.
brookstone.com API
Search and browse Brookstone's catalog of products with full-text search, filters, sorting, and pagination to find exactly what you need. Get instant search suggestions and access detailed product information including pricing, descriptions, and availability.
anker.com API
Search and browse Anker products to find prices, images, variants, and availability information directly from their online store. Get detailed product specifications to compare items and make informed purchasing decisions.
stadiumgoods.com API
Search and discover premium sneakers and streetwear from Stadium Goods. Retrieve detailed product specifications, variant-level pricing, and real-time inventory status across the full catalog and curated collections.
backcountry.com API
backcountry.com API
corsair.com API
Search and filter Corsair's gaming peripherals and PC components catalog by keywords, category, and product attributes like price and specs. Browse detailed product information, compare options, and easily navigate through results with sorting and pagination to find exactly what you need.
shopsy.in API
Search and browse products on Shopsy.in with detailed information like pricing, categories, and current deals, while easily navigating through paginated results. Get access to product specifications, homepage promotions, and category listings to compare items and find the best offers.
bootbarn.com API
Search Boot Barn's catalog of western wear and cowboy boots by keyword with customizable filters, view detailed product information, and discover related items through search suggestions. Find exactly what you're looking for with autocomplete recommendations while browsing Boot Barn's full selection of authentic western apparel and footwear.
boAt Lifestyle API – Products, Prices & Variants · Parse