Discover/shpock.com API
live

shpock.com APIshpock.com

Access Shpock classifieds data via API. Search listings, get item details, retrieve seller profiles, and browse categories across this UK/EU marketplace.

Endpoints
5
Updated
3mo ago
Try it
Max results per page
Search keyword (results are geo-dependent)
Pagination cursor from next_cursor in previous response
Filter for free items only
Category ID to filter by (e.g. 'el' for Electronics, 'fa' for Fashion, 'hg' for Home & Gar
Item condition filter: 'new', 'like_new', 'good', 'fair'
Maximum price filter
Minimum price filter
Filter for items on sale
api.parse.bot/scraper/5edad5a3-3179-4856-8042-9d695488627b/<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/5edad5a3-3179-4856-8042-9d695488627b/search_listings?limit=5&category=el' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for product listings with keywords, categories, and filters. Shpock is a location-based marketplace (primarily UK/EU). Keyword search results depend on the user's detected geolocation. Browsing by category or without a query typically returns more results.

Input
ParamTypeDescription
limitintegerMax results per page
querystringSearch keyword (results are geo-dependent)
cursorstringPagination cursor from next_cursor in previous response
is_freebooleanFilter for free items only
categorystringCategory ID to filter by (e.g. 'el' for Electronics, 'fa' for Fashion, 'hg' for Home & Garden, 'bt' for Baby & Toddler, 'jw' for Jewellery & Watches, 'hb' for Health & Beauty, 'sl' for Sport & Leisure, 'tg' for Toys & Games, 'mb' for Movies Books & Music, 've' for Vehicles, 'py' for Property, 'se' for Services, 'ot' for Other)
conditionstringItem condition filter: 'new', 'like_new', 'good', 'fair'
max_pricenumberMaximum price filter
min_pricenumberMinimum price filter
is_on_salebooleanFilter for items on sale
Response
{
  "type": "object",
  "fields": {
    "count": "integer - number of items returned",
    "items": "array of item objects with id, title, description, price, currency, locality, media, and boolean flags",
    "limit": "integer - page size used",
    "total": "integer or null - total matching items",
    "offset": "integer - current offset",
    "next_cursor": "string or null - cursor for next page",
    "filters_applied": "object - active filters sent in the request"
  },
  "sample": {
    "data": {
      "count": 4,
      "items": [
        {
          "id": "aWzouShPqVPLMNZu",
          "path": "/en-gb/i/aWzouShPqVPLMNZu/endgame-nitendo-switch-case",
          "media": [
            {
              "id": "696ce8b9284fa953cbe7d666",
              "title": "",
              "width": 1333,
              "height": 1000,
              "__typename": "Media"
            }
          ],
          "price": 6,
          "title": "Endgame Nitendo switch case",
          "is_new": false,
          "is_free": false,
          "is_sold": false,
          "currency": "gbp",
          "distance": null,
          "locality": "03773 Croydon",
          "is_boosted": false,
          "is_on_sale": false,
          "description": "Endgame switch case ,",
          "is_shippable": false,
          "canonical_url": "https://www.shpock.com/en-gb/i/aWzouShPqVPLMNZu/endgame-nitendo-switch-case",
          "distance_unit": null,
          "original_price": null
        }
      ],
      "limit": 5,
      "total": null,
      "offset": 0,
      "next_cursor": "brQeiSZDDZ+wes6/...",
      "filters_applied": {
        "category": "el"
      }
    },
    "status": "success"
  }
}

About the shpock.com API

The Shpock API provides 5 endpoints covering listing search, item detail, seller profiles, seller inventory, and category discovery on the Shpock second-hand classifieds marketplace. The search_listings endpoint accepts keyword queries, category filters, price ranges, and condition filters, returning structured item objects with price, location, media, and availability flags. Results are geolocation-dependent, making category-based browsing the most reliable path to broad coverage.

Listing Search and Filtering

The search_listings endpoint accepts a query string alongside optional filters including category, condition ('new', 'like_new', 'good', 'fair'), min_price, max_price, and is_free. Responses include an items array where each object contains id, title, description, price, currency, locality, and media. Pagination is cursor-based: the response includes a next_cursor field you pass back as the cursor parameter on the next call. The total field may be null for some queries. Because Shpock is location-aware, keyword searches produce geo-dependent result sets; browsing by category or omitting a query tends to return more consistent volumes.

Item Detail and Seller Data

get_listing_detail takes a single item_id (sourced from search_listings results) and returns the full listing object, including extended metadata, item properties, and a nested user object containing the seller's id. That id feeds directly into get_seller_profile, which returns the seller's public profile fields: name, avgRating, numRatings, and numItemsSold. To enumerate a seller's active inventory, pass the same user_id to get_seller_listings, which supports limit and offset pagination and returns an itemsByUser object with total, limit, offset, and a summary items array.

Category Reference

get_all_categories requires no inputs and returns a static array of category objects, each with an id string (e.g. 'el' for Electronics, 'fa' for Fashion, 'hg' for Home & Garden, 'bt' for Baby & Toys) and a name. These IDs are the valid values for the category parameter in search_listings. Since the list is static, you can call it once to build a local lookup table rather than fetching it on every request.

Common use cases
  • Monitor price trends for a specific product category by polling search_listings with category and max_price filters over time.
  • Build a cross-platform price comparison tool by matching item titles from search_listings against listings from other second-hand marketplaces.
  • Aggregate seller reputation data using avgRating and numRatings from get_seller_profile for trust-scoring workflows.
  • Enumerate a seller's full active inventory using get_seller_listings with offset pagination to audit listing activity.
  • Populate a deal-alert system by searching search_listings with is_free or a low max_price threshold for specific keywords.
  • Build a category taxonomy reference by calling get_all_categories once and mapping category IDs to human-readable names for a UI filter.
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 Shpock have an official public developer API?+
Shpock does not publish an official public developer API or documented REST/GraphQL interface for third-party use. This API provides structured access to the same public listing and profile data available on shpock.com.
Why do keyword search results vary and sometimes return fewer items than expected?+
Shpock is a location-based marketplace primarily serving the UK and EU. The search_listings endpoint's keyword results are geo-dependent, so the same query value can return different item counts depending on the detected region. Browsing by category without a query string, or using broad category IDs like 'el' (Electronics) or 'fa' (Fashion), generally returns more consistent and higher-volume results.
What seller data does `get_seller_profile` return?+
get_seller_profile returns the seller's public profile fields including name, avgRating, numRatings, numItemsSold, and shop details. Private data such as contact information, full transaction history, or messaging threads is not exposed. The user ID required as input comes from the user object inside a get_listing_detail response.
Does the API cover sold or expired listings?+
The API currently covers active listings returned by search and a seller's active inventory via get_seller_listings. Sold, expired, or removed listings are not retrievable through the current endpoints. You can fork this API on Parse and revise it to add an endpoint targeting completed or historical listing data if that surface becomes accessible.
Is saved search, messaging, or user authentication functionality available?+
Not currently. The API covers public read operations: listing search, item detail, seller profiles, seller inventory, and category lookup. Account-bound features such as saved searches, watchlists, or buyer-seller messaging are not included. You can fork it on Parse and revise to add endpoints for any additional public-facing functionality.
Page content last updated . Spec covers 5 endpoints from shpock.com.
Related APIs in MarketplaceSee 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.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
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.
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.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
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.
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.