Spurtcommerce
DocumentAPI ReferenceAdd-ons
API Reference
API Reference
  • About Spurtcommerce APIs
  • Spurtcommerce
    • Admin API
      • Admin
        • Authentication
        • My Profile
        • Support
      • Buyers
        • Manage Buyer
      • Chat
      • CMS
        • Manage Banner
        • Manage Blogs
        • Manage Pages
        • Manage SEO
      • Dashboard
      • Marketing
        • Manage Cross Selling
          • Related Products
        • Manage Promotions
          • Coupon
      • Marketplace
        • Manage Products
        • Manage Sales
        • Manage Settlements
        • Product Configuration
        • Reports
      • Sellers
        • Seller
        • Seller Group
        • Seller KYC Request
      • Settings
        • Add-ons
        • Add-ons Product Attributes
        • Localization
        • Order Fulfilment Status
        • Personalise
        • Site Settings
        • Store Settings
        • System
        • User and Permission
        • Support-Category
    • Store API
      • Account Settings
        • Customer
        • My Order
        • My Quotation
        • My Wishlist
        • Profile
        • Support
      • Checkouts
      • Store
        • Admin Contact
        • Categories
        • Home
        • Product Detail Page
    • Vendor API
      • Page 1
      • Catalogue
        • Bulk Product Imports
          • Custom
          • Standard
        • Common Product
        • Data Export
        • Pricing
        • Product Localisation
        • Product List
        • Product Variants
        • Related Products
      • CRM
        • Customer
        • Customer Group
        • Question and Answer
        • Rating and Review
      • Dashboard
      • Marketing
      • Payments
        • Archeived Payments
        • Earnings
        • Settlements
      • Profile
        • Account Settings
          • My Business
          • My KYC
          • My Profile
          • My Shop
          • Personalised Setting
        • Chat
        • Vendor
        • Support
      • Reports
      • Sales
        • Archeive Orders
        • Back Orders
        • Failed Orders
        • Orders
        • Quotation Request
        • Stock Update
        • Variant Stock Update
      • Supplier
        • Contact
        • Supplier
Powered by GitBook
On this page
  1. Spurtcommerce
  2. Store API
  3. Store

Categories

PreviousAdmin ContactNextHome

Last updated 4 months ago

Get list of product categories

get

This endpoint retrieves the list of available product categories for the system.

Header parameters
AuthorizationstringOptional

Optional Bearer token for authentication.

industrystringOptional

The industry of the user.

keystringOptional

The unique key for the request.

languagekeystringOptional

The language key for the request.

Responses
200
Successfully retrieved the list of categories.
400
Bad Request
500
Internal Server Error
get
GET /backend/api/list/category HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully got the list of categories</message>
</object>

Get count of custom products

get

This endpoint retrieves the count of products based on the provided filters.

Query parameters
categorySlugstringRequired

Slug for the product category (e.g., 'mens-bottom-wear')

attributestringOptional

Filter by product attribute (e.g., color, size, etc.)

variantstringOptional

Filter by product variant

pricestringOptional

Filter by price range (e.g., 'low', 'high')

priceFromnumber · floatOptional

Filter by minimum price

priceTonumber · floatOptional

Filter by maximum price

latestArrivalbooleanOptional

Filter by latest arrivals (1 for yes, 0 for no)

countintegerOptional

If set to 1, returns the count of products

Header parameters
AuthorizationstringOptional

Optional Bearer token for authentication.

industrystringOptional

The industry of the user.

keystringOptional

The unique key for the request.

languagekeystringOptional

The language key for the request.

Responses
200
Successfully retrieved the count of products
400
Bad Request
500
Internal Server Error
get
GET /backend/api/list/custom-product-list HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully got the count of products</message>
</object>

Get product count and maximum price

get

This endpoint retrieves the total number of products and the maximum product price.

Header parameters
AuthorizationstringOptional

Optional Bearer token for authentication.

industrystringOptional

The industry of the user.

keystringOptional

The unique key for the request.

languagekeystringOptional

The language key for the request.

Responses
200
Successfully retrieved the product count and maximum price
400
Bad Request
500
Internal Server Error
get
GET /backend/api/list/product-count HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully get Product Count</message>
</object>

Get question list based on the question ID

get

This endpoint retrieves the list of questions and answers based on the store's question ID and an optional keyword.

Path parameters
skuIdintegerRequired

The ID of the question to retrieve the list for.

Query parameters
keywordstringOptional

An optional search keyword to filter questions.

Header parameters
AuthorizationstringOptional

Optional Bearer token for authentication.

industrystringOptional

The industry of the user.

keystringOptional

The unique key for the request.

languagekeystringOptional

The language key for the request.

Responses
200
Successfully retrieved the question list
400
Bad Request
500
Internal Server Error
get
GET /backend/api/store-question-answer/question-list/{skuId} HTTP/1.1
Host: 139.59.67.17
Accept: */*
<?xml version="1.0"?>
<object>
	<status>1</status>
	<message>Successfully get all question List</message>
</object>
  • GETGet list of product categories
  • GETGet count of custom products
  • GETGet product count and maximum price
  • GETGet question list based on the question ID