Endpoint Description Parameters Example Evidence
/products/ Returns the first page of product listings (12 classifieds per page) with filtering options such as category, location, tags and ratings. Equivalent to page 1. None GET https://marketdeed.com/products/ The product listing page shows a results table with categories, location filters and pagination controlsmarketdeed.com.
/products/page/{page_number}/ Accesses a specific product listing page (pagination). page_number is an integer starting from 2. page_number – page number. GET https://marketdeed.com/products/page/3/ Page 3 of the product list shows results 25–36 of 2,194 productsmarketdeed.com.
/products/listing-category/{category_slug}/ Filters product listings by category. category_slug is the slug for the category (e.g., electronics-and-appliances). category_slug – slug of category. GET https://marketdeed.com/products/listing-category/electronics-and-appliances/ Navigating to “electronics & appliances” opens a dedicated listing page for that categorymarketdeed.com.
/products/listing-category/{category_slug}/page/{page_number}/ Pagination within a category listing. category_slug, page_number. GET https://marketdeed.com/products/listing-category/electronics-and-appliances/page/2/ Page 2 of the electronics & appliances category shows results 13–24 of 116 productsmarketdeed.com.
/listing-category/{category_slug}/ (and /listing-category/{category_slug}/page/{n}/) Alternate path for category listings without the products prefix. The same slug and page parameters apply. The site automatically resolves to the same contentmarketdeed.com. category_slug, optional page_number. GET https://marketdeed.com/listing-category/electronics-and-appliances/ The user interface exposes this URL when selecting a category from the breadcrumb navigationmarketdeed.com.
/listing/{product_slug}/ Retrieves the full details of a single product listing. Useful for scraping product descriptions, seller info, contact numbers and related ads. product_slug – slug of the product. GET https://marketdeed.com/listing/proximity-sensor-types/ The detail page for “Proximity Sensor Types” shows the title, category tags, seller information and descriptive contentmarketdeed.com.

Stores / Exporters

Endpoint Description Parameters Example Evidence
/exporters/ Lists exporters/suppliers (“stores”) on MarketDeed. Defaults to page 1. None GET https://marketdeed.com/exporters/ The All Stores page lists store names, ad counts and has pagination controlsmarketdeed.com.
/exporters/page/{page_number}/ Pagination for the exporters list. page_number – page number. GET https://marketdeed.com/exporters/page/2/ Page 2 of the exporters list displays multiple store cards and pagination linksmarketdeed.com.
/store/{store_slug}/ Returns the profile page for an individual store. The page contains the store’s address, contact phone numbers, website link, membership date and the products posted by the store. store_slug – slug of the store. GET https://marketdeed.com/store/vipplayengineering/ The “Vip Play & Engineering” store page displays the store’s address, membership date and a grid of three product adsmarketdeed.com.

Search and other useful endpoints

Endpoint Description Parameters Example Evidence
/?s={query} Performs a site‑wide search for the specified query string and returns an HTML page with results. query – search term (URL encoded). GET https://marketdeed.com/?s=health A search for “health” returns a list of relevant products and organisations, with paginationmarketdeed.com.
/wp-json/wp/v2/posts WordPress REST API endpoint for blog posts. Returns JSON with post metadata (title, date, content). Useful if blog posts need to be scraped programmatically. Supports optional query parameters from the WP API (e.g., per_page, page). GET https://marketdeed.com/wp-json/wp/v2/posts?per_page=5 The WordPress JSON API returns posts with IDs, dates, slugs and rendered HTML contentmarketdeed.com.
/wp-json/wp/v2/types Returns available WordPress post types via the REST API. None GET https://marketdeed.com/wp-json/wp/v2/types