Discover/Subito API
live

Subito APIsubito.it

Search and retrieve Italian classified listings from Subito.it. Filter by keyword, category, location, and price. Access listing details, real estate, dealer inventory, and seller contacts.

Endpoint health
verified 6d ago
get_seller_phone
search_listings
get_real_estate_listings
get_listing_details
get_dealer_listings
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the Subito API?

The Subito.it API covers Italy's largest classifieds marketplace across 6 endpoints, returning structured listing data including titles, descriptions, images, geo-location, features, and advertiser details. The search_listings endpoint accepts keyword, category, region, city, and price range filters to return paginated ad results, while get_listing_details delivers the complete record for any single listing by its numeric ID or URN.

Try it
City/Provincia ID (numeric).
Town/Comune ID (numeric ISTAT code).
Number of results to return per page.
Search keyword.
Pagination offset (start index).
Region ID (numeric).
Category ID (e.g. '6' for Real Estate, '2' for Cars, '12' for Telefonia). Use get_categories to discover all IDs.
Maximum price filter (numeric string).
Minimum price filter (numeric string).
Listing type: 's' for sale (vendita), 'a' for rent (affitto).
Advertiser type: '0' for private, '1' for business.
api.parse.bot/scraper/e626a4f7-5ad6-47bb-93ad-28426d5a7b09/<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/e626a4f7-5ad6-47bb-93ad-28426d5a7b09/search_listings?city=4&town=058091&limit=5&query=iPhone&offset=0&region=4&category=2&price_max=5000&price_min=100&listing_type=s&advertiser_type=0' \
  -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 subito-it-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.

"""Walkthrough: Subito.it SDK — search listings, drill into details, contact sellers."""
from parse_apis.subito_it_api import Subito, ListingType, RealEstateCategory, AdvertiserType, ListingNotFound

client = Subito()

# Browse all categories to discover IDs for filtering
for cat in client.categories.list(limit=5):
    print(cat.key, cat.value, cat.friendly_name)

# Search for iPhones in the Telefonia category (business sellers only)
listing = client.listings.search(
    query="iPhone", category="12", advertiser_type=AdvertiserType.BUSINESS, limit=1
).first()

if listing:
    print(listing.subject, listing.urn)
    print(listing.geo.city.value, listing.advertiser.user_id)

    # Get full details for this listing by its ID
    try:
        detail = client.listings.get(ad_id=listing.urn)
        print(detail.subject, detail.body[:100])
        for feat in detail.features:
            print(feat.label, feat.values[0].value)
    except ListingNotFound as exc:
        print(f"Listing gone: {exc}")

    # Reveal the seller's phone number (instance method)
    phone_info = listing.phone()
    print(phone_info.phone_number)

    # Browse all listings from this seller
    for ad in listing.advertiser.listings(limit=3):
        print(ad.subject, ad.category.value)

# Search real estate: apartments for sale in Lombardia
for prop in client.listings.search_real_estate(
    category=RealEstateCategory.APARTMENTS,
    listing_type=ListingType.SALE,
    region="4",
    limit=3,
):
    print(prop.subject, prop.urls.default)

print("exercised: categories.list / listings.search / listings.get / listing.phone / advertiser.listings / listings.search_real_estate")
All endpoints · 6 totalmissing one? ·

Search for listings on Subito.it with various filters including keyword, category, location, and price range. Returns paginated results sorted by recency. At least one filter (query, category, region, city) is recommended to narrow results; calling with no filters returns all listings site-wide.

Input
ParamTypeDescription
citystringCity/Provincia ID (numeric).
townstringTown/Comune ID (numeric ISTAT code).
limitintegerNumber of results to return per page.
querystringSearch keyword.
offsetintegerPagination offset (start index).
regionstringRegion ID (numeric).
categorystringCategory ID (e.g. '6' for Real Estate, '2' for Cars, '12' for Telefonia). Use get_categories to discover all IDs.
price_maxstringMaximum price filter (numeric string).
price_minstringMinimum price filter (numeric string).
listing_typestringListing type: 's' for sale (vendita), 'a' for rent (affitto).
advertiser_typestringAdvertiser type: '0' for private, '1' for business.
Response
{
  "type": "object",
  "fields": {
    "ads": "array of listing objects with urn, subject, body, category, geo, advertiser, features, images, urls",
    "start": "integer — next pagination offset",
    "count_all": "integer — total number of matching results"
  },
  "sample": {
    "data": {
      "ads": [
        {
          "geo": {
            "city": {
              "value": "Foggia"
            },
            "region": {
              "value": "Puglia"
            }
          },
          "urn": "id:ad:fa3f5a36-3178-4685-a962-7bbc98d41f93:list:648890873",
          "body": "Vendo iphone 15 pro max senza il minimo segno di usura",
          "urls": {
            "default": "https://www.subito.it/telefonia/iphone-15-pro-max-256-gb-foggia-648890873.htm"
          },
          "images": [
            {
              "cdn_base_url": "https://images.sbito.it/api/v1/sbt-ads-images-pro/images/eb/ebe51287-66ae-448c-a522-e6a6602bc126"
            }
          ],
          "subject": "Iphone 15 pro max 256 Gb",
          "category": {
            "key": "12",
            "value": "Telefonia"
          },
          "features": [
            {
              "uri": "/price",
              "label": "Prezzo",
              "values": [
                {
                  "key": "600",
                  "value": "600 €"
                }
              ]
            }
          ],
          "advertiser": {
            "company": false,
            "user_id": "110378471"
          }
        }
      ],
      "start": 5,
      "count_all": 69070
    },
    "status": "success"
  }
}

About the Subito API

Searching and Browsing Listings

The search_listings endpoint is the primary entry point for querying Subito.it. It accepts a query keyword, a numeric category ID, region, city, and price_max to filter results. Responses include an ads array — each object containing urn, subject, body, category, geo, advertiser, features, images, and urls — plus count_all for the total match count and start for the next pagination offset. Use get_categories first to resolve the full category tree, which returns each category's key (ID), value (display name), friendly_name (URL slug), and optional macrocategory_id for hierarchy.

Real Estate and Dealer Inventory

get_real_estate_listings targets the Real Estate macro-category (ID 6) and adds price_min, price_max, and a listing_type filter (s for sale, a for rent) on top of the standard location filters. Sub-categories include Appartamenti (7), Ville (29), and Terreni (30). get_dealer_listings fetches all active ads from a single advertiser using their numeric user_id, which is exposed in the advertiser object of any search result or listing detail response. Both endpoints follow the same paginated ads / start / count_all shape.

Listing Details and Seller Contact

get_listing_details accepts either a numeric listing ID (extracted from the listing URL) or a full URN and returns the complete listing object: full body description, all image objects with base_url and cdn_base_url, the complete features array (price, condition, shipping, and more), and advertiser info including user_id, name, and a company flag. get_seller_phone takes a listing URN and returns the seller's phone_number when available. The endpoint returns stale_input when no phone number is on record — common for private sellers, less common for business or dealer accounts.

Reliability & maintenanceVerified

The Subito API is a managed, monitored endpoint for subito.it — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when subito.it 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 subito.it 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
6d ago
Latest check
6/6 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
  • Aggregate Italian automotive classifieds by filtering search_listings with category ID 2 and a city or region to build a regional car price index
  • Monitor real estate asking prices in a specific Italian city by polling get_real_estate_listings with listing_type=s and a city ID
  • Build a dealer profile page by fetching all active ads from a specific advertiser via get_dealer_listings using their user_id
  • Enrich a listing record with the seller's phone number using get_seller_phone after retrieving a URN from search_listings
  • Resolve human-readable category names and IDs before constructing search queries by calling get_categories to inspect the full hierarchy
  • Track listing availability and price changes by periodically calling get_listing_details on a known ad ID and comparing the features array
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 Subito.it have an official developer API?+
Subito.it does not publish a public developer API or documented access program for third-party developers.
What does `get_listing_details` return beyond what appears in search results?+
get_listing_details returns the full body text description, the complete features array (which can include condition, shipping options, and item-specific attributes), all image objects with both base_url and cdn_base_url, and the advertiser object with a company flag. Search results may return truncated body text and a subset of features.
Is location filtering by town (comune) supported, and how does it differ from city filtering?+
search_listings and get_real_estate_listings both accept a town parameter using a numeric ISTAT code for comune-level filtering, which is more granular than the city parameter (provincia-level). The region parameter is the broadest geographic filter. You can combine region, city, or town, but providing at least one is recommended — omitting all location filters returns all national listings.
Does the API expose saved searches, user watchlists, or listing history?+
Not currently. The API covers active listing search, listing details, real estate listings, dealer inventory, category metadata, and seller phone numbers. You can fork it on Parse and revise to add endpoints for those missing capabilities.
Are all listings guaranteed to have a phone number via `get_seller_phone`?+
No. get_seller_phone returns a phone_number string only when the seller has added one. When no number is available — common for private sellers — the endpoint returns stale_input. Business and dealer listings are more likely to include a phone number. If contact data coverage is important, retrieving the advertiser.user_id first and cross-referencing with get_dealer_listings can indicate whether the poster is a dealer.
Page content last updated . Spec covers 6 endpoints from subito.it.
Related APIs in MarketplaceSee all →
ebay.it API
Search and browse listings on eBay Italy (ebay.it). Retrieve item details, completed/sold listings for price research, and public seller profiles.
casa.it API
Search and browse property listings from Casa.it, Italy's real estate marketplace. Retrieve listings by location, price, size, property type, and transaction type (sale or rent), and fetch full details for individual properties including descriptions, photos, features, and publisher information.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
autoscout24.it API
Search for used and new cars across AutoScout24 Italy's inventory, view detailed listing information, and browse dealer profiles. Filter vehicles by make and model to find exactly what you're looking for in the Italian automotive market.
vinted.it API
Browse and search secondhand listings on Vinted.it to retrieve product names, IDs, and direct URLs. Access homepage listings and search results in real-time.
idealista.it API
Search and retrieve property listings from Idealista.it, Italy's leading real estate platform. Access listings for sale, rent, and new construction across Italian cities, with full property details and photos.
amazon.it API
Search and retrieve product data from Amazon Italy (amazon.it), including listings, detailed product info, category hierarchies, and bestseller rankings.
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.