Njuskalo.hr Data Parser & API
Njuskalo.hr is Croatia’s national classifieds leader, carrying the bulk of the country’s car listings, and Carapis extracts its listing data, including spec, mileage, photos and seller info, through one REST API. A horizontal marketplace (formerly Styria-owned), Njuskalo is the de-facto car marketplace in Croatia with low anti-bot friction.
| Country | Croatia |
|---|---|
| Type | Classifieds |
| Vehicle types | used, private, dealer |
| Monthly visits | national leader all-cat |
| Active listings | large (incl. autos) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.njuskalo.hr |
What is Njuskalo.hr?
Njuskalo.hr is the leading horizontal classifieds platform in Croatia, formerly part of the Styria media group. Its vehicles category carries the bulk of the country’s car listings, both private and dealer. Njuskalo is the all-category national leader by traffic.
Market Position
Njuskalo.hr is the national classifieds leader in Croatia and the de-facto car marketplace, carrying the bulk of the country’s listings. As a horizontal platform it spans both private and dealer inventory. Anti-bot is low, so it is a low-friction target; Carapis serves its car-listing data through the same unified endpoint as every other platform.
Data Fields Available
Carapis extracts a structured record from each Njuskalo.hr car listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Specification — options
- Listing context — seller type (private vs dealer), location, photo gallery
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "njuskalo-hr", "limit": 20},
headers={"Authorization": f"Bearer {API_KEY}"},
)
for car in resp.json()["results"]:
print(car["make"], car["model"], car["year"], car["price"])Get an API key at my.carapis.com and see the full API reference. Pricing is on the pricing page.
Use Cases
- Market research — Njuskalo’s car section gives a near-complete view of the Croatian used market. See market research.
- Pricing intelligence — private and dealer listings power pricing models for dealers.
- Import / export — the Balkans is an active used-car corridor; listing data supports cross-border sourcing. See import & export.