Discover/ss API
live

ss APIss.lv

Access real estate listings, spare parts search, and full listing details from ss.lv, Latvia's largest classifieds site, via a structured JSON API.

Endpoint health
verified 4d ago
get_real_estate_listings
search_spare_parts
get_listing_detail
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the ss API?

The ss.lv API provides 3 endpoints for extracting structured data from Latvia's largest classifieds platform. Use get_real_estate_listings to pull property listings from specific district-level category paths, search_spare_parts to query transport and automotive parts by keyword with optional price and region filters, and get_listing_detail to retrieve complete details — including description, attributes, and location — for any individual listing URL.

Try it
Category path without /lv/ prefix. Must be a leaf-level path including district (e.g., 'real-estate/flats/riga/centre', 'real-estate/flats/riga/purvciems', 'real-estate/houses-summer-residences/riga/centre').
api.parse.bot/scraper/551d0073-7cc1-4df7-b326-4ee5da9dd679/<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/551d0073-7cc1-4df7-b326-4ee5da9dd679/get_real_estate_listings?category=real-estate%2Fflats%2Friga%2Fcentre' \
  -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 ss-lv-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.ss_lv_classifieds_api import SSLv, Listing, ListingDetail, Category

sslv = SSLv()

# Browse real estate in Riga centre via a constructible Category
centre = sslv.category("real-estate/flats/riga/centre")
for listing in centre.listings(limit=5):
    print(listing.title, listing.price, listing.url)

# Search spare parts by keyword with price filter
for result in sslv.listings.search(query="bmw", price_max=10000, limit=3):
    print(result.title, result.price, result.attributes)

# Navigate from a listing to its full detail
detail = result.details()
print(detail.title, detail.price, detail.location, detail.description)
All endpoints · 3 totalmissing one? ·

Fetch real estate listings from a specific leaf-level category path on ss.lv. The category must be a complete path down to a district or sub-category level (e.g., 'real-estate/flats/riga/centre'). Returns up to 30 listings per page with title, URL, price, and column attributes. Non-leaf paths may return empty results.

Input
ParamTypeDescription
categorystringCategory path without /lv/ prefix. Must be a leaf-level path including district (e.g., 'real-estate/flats/riga/centre', 'real-estate/flats/riga/purvciems', 'real-estate/houses-summer-residences/riga/centre').
Response
{
  "type": "object",
  "fields": {
    "count": "integer total number of listings returned",
    "listings": "array of listing objects each containing title, url, price, and attributes"
  },
  "sample": {
    "data": {
      "count": 30,
      "listings": [
        {
          "url": "https://www.ss.lv/msg/lv/real-estate/flats/riga/centre/bfxolh.html",
          "price": "550  €/mēn.",
          "title": "Īpašnieks izīrē modernu 2 istabu dzīvokli pagalma ēkā ar lielu u",
          "attributes": [
            "Bruņinieku 73F",
            "2",
            "70"
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the ss API

Real Estate Listings

The get_real_estate_listings endpoint accepts a category parameter representing a leaf-level path on ss.lv, such as real-estate/flats/riga/centre. The path must extend all the way down to a district or sub-category level — passing a higher-level path like real-estate/flats will return empty results. The response includes a count integer and a listings array where each object carries title, url, price, and an attributes map of additional fields like area, floor, and number of rooms as they appear on the listing card.

Spare Parts Search

The search_spare_parts endpoint accepts a required query string (e.g., bmw, brake pad) and two optional filters: region as a region code string (use '0' for all regions) and price_max as an integer EUR ceiling. Listings priced above price_max are excluded before the response is returned. Results come from the transport/spare-parts category on ss.lv and follow the same count plus listings shape as the real estate endpoint.

Listing Detail

The get_listing_detail endpoint takes a full ss.lv listing URL and returns a single structured object. Response fields include title, price (with currency), location (extracted from listing attributes), description (full text body), and details — a key-value object containing all attribute pairs shown on the listing page, such as make, model, year, condition, or property size depending on the category. This endpoint works for any listing URL on ss.lv, not only real estate or spare parts.

Reliability & maintenanceVerified

The ss API is a managed, monitored endpoint for ss.lv — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ss.lv 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 ss.lv 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
4d ago
Latest check
3/3 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
  • Track asking prices for Riga centre flats by polling get_real_estate_listings with a district-level category path
  • Build a price-alert tool for car parts by running search_spare_parts with a price_max filter and comparing results over time
  • Aggregate multi-district property data by calling get_real_estate_listings for several leaf paths and merging the listings arrays
  • Enrich spare parts search results with full descriptions by piping listing url fields from search_spare_parts into get_listing_detail
  • Extract structured property attributes (floor, area, rooms) from individual listing pages using the details object in get_listing_detail
  • Monitor regional availability of specific spare parts by varying the region parameter in search_spare_parts across multiple requests
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 ss.lv have an official developer API?+
ss.lv does not publish an official public developer API or documented data access program as of mid-2025.
What does `get_real_estate_listings` return and how specific does the category path need to be?+
The endpoint returns a count and a listings array where each entry has title, url, price, and attributes. The category parameter must reach a leaf level that includes a district or sub-category, for example real-estate/flats/riga/centre. Paths that stop at a higher level — like real-estate/flats — will return empty results because ss.lv paginates data at the district level.
Does the API cover categories other than real estate and spare parts, such as jobs, electronics, or animals?+
Not currently. The API covers real estate listings by category path, spare parts search by keyword, and individual listing detail for any ss.lv URL. You can fork it on Parse and revise it to add endpoints for other ss.lv category trees like jobs or electronics.
Does `search_spare_parts` support pagination to retrieve more than the first page of results?+
The current endpoint does not expose a page or offset parameter, so only the first result set is returned. You can fork the API on Parse and revise it to add pagination support if deeper result sets are needed.
How current is the listing data returned by these endpoints?+
Each call fetches data as it appears on ss.lv at request time, so results reflect the live state of the site at that moment. ss.lv does not publish a data freshness SLA, and listings that have been removed or marked as sold may disappear between requests.
Page content last updated . Spec covers 3 endpoints from ss.lv.
Related APIs in MarketplaceSee all →
m.ss.com API
Browse Latvia's largest classifieds marketplace by category or search for specific listings, view detailed ad information including pricing and descriptions, and retrieve seller contact numbers. Access everything from real estate and vehicles to electronics and services across SS.com's comprehensive catalog.
olx.ba API
Search and browse listings on OLX.ba across all categories. Retrieve listing names, prices, categories, and URLs, or drill into individual listings for detailed attributes such as location, address, area, floor, condition, and seller information. Includes dedicated support for apartment listings.
m.olx.ro API
Search and retrieve structured real estate listings from OLX Romania, including apartments, houses, land, and other properties with detailed information. Access category IDs and browse available properties by type to find what you're looking for on Romania's popular classifieds platform.
autoplius.lt API
Search for cars and access detailed information like pricing, specifications, and listings from Autoplius.lt, Lithuania's largest vehicle classifieds marketplace. Find exactly what you're looking for with comprehensive car details all in one place.
blocket.se API
Search and browse second-hand items, cars, and housing listings across Blocket.se and Qasa.se, then retrieve detailed information about any listing that interests you. Get instant access to comprehensive product details, pricing, and categorized inventory across multiple marketplaces in one unified interface.
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.
shpock.com API
Search and browse products listed on Shpock.com, view detailed listing information and seller profiles, and explore all available marketplace categories. Find what you're looking for by searching inventory, checking seller histories, and discovering related items from individual merchants.
krisha.kz API
Search and browse real estate listings across Krisha.kz to find properties for sale, rent, or new developments, then access detailed information and contact details for each listing. Get comprehensive property data including prices, descriptions, and seller information to make informed decisions about properties in Kazakhstan.