Skip to Content

List.am Data Parser & API

List.am is Armenia’s national classifieds leader and the country’s de-facto car marketplace — with a self-reported ~69K car ads — and Carapis extracts its listing data, including spec, mileage, photos and seller info, through one REST API. A horizontal marketplace, List.am is where Armenians buy and sell cars, with low anti-bot friction.

CountryArmenia
TypeClassifieds
Vehicle typesused, private, dealer
Monthly visitshigh all-cat (national leader)
Active listings~69K cars (self-reported)
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitewww.list.am

What is List.am?

List.am is the leading horizontal classifieds platform in Armenia and the de-facto car marketplace. Its vehicles category carries private and dealer listings. List.am self-reports ~69K active car ads and is the national all-category leader by traffic.

Market Position

List.am is the national classifieds leader in Armenia and the de-facto car marketplace, with a self-reported ~69K car ads ahead of niche players like Avtobroker.am. As a horizontal platform it spans 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 List.am 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

import requests resp = requests.get( "https://api.carapis.com/v2/listings", params={"source": "list-am", "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 — List.am’s car section gives a near-complete view of the Armenian used market. See market research.
  • Pricing intelligence — private and dealer listings power pricing models for dealers.
  • Import / export — the Caucasus is an active re-export corridor; listing data supports remote sourcing. See import & export.

Frequently asked questions