Discover/Shpock API
live

Shpock APIshpock.com

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

Endpoint health
verified 5d ago
search_listings
get_all_categories
get_listing_detail
get_seller_profile
get_seller_listings
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Shpock 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.

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
Item condition filter
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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/5edad5a3-3179-4856-8042-9d695488627b/search_listings?limit=5&is_free=False&category=el&condition=new&max_price=500&min_price=0&is_on_sale=False' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace shpock-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.shpock_marketplace_api import Shpock, CategoryFilter, Condition

shpock = Shpock()

# Search for electronics in good condition
for listing in shpock.listings.search(category=CategoryFilter.ELECTRONICS, condition=Condition.GOOD, limit=5):
    print(listing.id, listing.title, listing.price, listing.currency, listing.locality)

# Get full details for a specific listing
detail = shpock.listings.get(item_id="aWzouShPqVPLMNZu")
print(detail.id, detail.title, detail.price, detail.canonical_url)

# Navigate to a seller and browse their listings
seller = shpock.seller(id="WLnNHNTpJuZZi0WO")
for item in seller.listings(limit=3):
    print(item.id, item.title, item.price)

# List all available categories
for cat in shpock.categories.list():
    print(cat.id, cat.name)
All endpoints · 5 totalmissing one? ·

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. Paginates via an opaque cursor.

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
conditionstringItem condition filter
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 listing summaries 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": 5,
      "items": [
        {
          "id": "aWzouShPqVPLMNZu",
          "path": "/en-gb/i/aWzouShPqVPLMNZu/endgame-nitendo-switch-case",
          "media": [
            {
              "id": "696ce8b9284fa953cbe7d666",
              "title": "",
              "width": 1333,
              "height": 1000
            }
          ],
          "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": "abc123cursor",
      "filters_applied": {
        "category": "el"
      }
    },
    "status": "success"
  }
}

About the Shpock API

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.

Reliability & maintenanceVerified

The Shpock API is a managed, monitored endpoint for shpock.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when shpock.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official shpock.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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,000100 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 →
shafa.ua API
Search and browse second-hand product listings on Ukraine's Shafa.ua marketplace, compare prices, and view detailed seller profiles and reviews. Analyze market trends across product categories and subcategories to make informed purchasing or reselling decisions.
shopee.ph API
Search and browse Shopee Philippines products, view detailed product information with customer reviews, and discover shop details and inventory. Access product search suggestions and explore the full category tree to find what you're looking for on the marketplace.
depop.com API
Browse and discover products on Depop by searching inventory, viewing detailed product information, seller profiles, and reviews, while exploring trending items and the complete category structure. Filter listings by various criteria, access seller information including their likes and past sales, and find similar products to items you're interested in.
ebay.co.uk API
Search eBay UK listings and sold items to find products, compare prices, and view seller feedback and ratings. Access detailed item information, explore categories, and discover daily deals all in one place.
ebay.com API
Search and monitor eBay listings across any category, with support for active and completed/sold listings. Retrieve item details, pricing history, seller profiles and feedback, and category data. Filter by keyword, category, condition, seller, and sort order to support price research, market analysis, and inventory monitoring.
dba.dk API
Search and retrieve detailed listings from Denmark's largest marketplace DBA.dk, including product information, pricing, and seller details across general goods and car categories. Browse marketplace categories, find specific items, and access comprehensive data on both regular listings and automotive inventory.
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.
shopee.com.br API
Search for products on Shopee Brazil (shopee.com.br) and retrieve detailed information including item specifications, customer reviews, and seller profiles. Browse the complete category tree to discover products across all sections of the marketplace, and explore official shops, flash sales, and search suggestions.