GET /v1/vehicles/facets
Returns distinct filter values currently in catalog. Cached 5 minutes.source (CSV) to scope facets to a specific source set.
GET /v1/vehicles
Paginated, filterable inventory list. ReturnsVehicleSummary[].
Filters
Model vs. sub-model
Korean inventory is organized in two levels: a ModelGroup (e.g. Cherokee) contains one or more Models (e.g. Grand Cherokee, Cherokee).modelselects the ModelGroup.model=Cherokeetherefore returns every car in the Cherokee family — Grand Cherokee included.sub_modelnarrows to a specific Model within that group:model=Cherokee&sub_model=Grand Cherokee.
sub_model requires model (it has no meaning without its group) and is a single value. Dealer vocabulary is validated before the upstream request: an unsupported make, model, or sub_model returns 400 validation_error with the offending field and value instead of silently producing a guaranteed-empty page.
Discovering supported values: the response does not echo the sub-model — VehicleSummary.model is the ModelGroup (a Cherokee and a Grand Cherokee row both come back with model: "Cherokee"), so you cannot read the canonical sub_model spelling off a result. Matching is exact, and many models are split by generation, so a supported value may carry a generation/facelift qualifier — e.g. Grand Cherokee, Grand Cherokee (WL), Cherokee (KL). Ask LMN for the current per-make catalog rather than inferring names from responses.
Sort
Null-strict semantics
When you filter on a field that’s null for dealer cars (accident_grade, auction_date_*, auction_count_*), dealer rows are silently excluded only when source is omitted entirely. The response includes an X-LMN-Filtered-Out: dealer=N header so your UI can tell the dealer “42 dealer cars were hidden”. When you explicitly request source=dealer together with one of these auction-only filters, the request returns 400 validation_error instead (see Dealer source constraints below) — fail-fast rather than silent drop.
The header has two caveats, both consequences of dealer inventory being a live third-party proxy:
- It only appears when
makeis provided. The dealer upstream resolves inventory per-manufacturer, so withoutmakethe excluded count cannot be computed and the header is omitted. Nis approximate and best-effort. It is the upstream match count for your non-auction filters; a small number of those cars may still have been narrowed further by response-side filters (for exampletransmission). If the dealer upstream is temporarily unreachable, the header is omitted rather than delaying your response.
Dealer source constraints
Thedealer source is fulfilled by a live proxy to a third-party retail inventory (encar). Two design choices flow from that:
Required: source=dealer (alone or mixed with auction sources) requires make. make may be a CSV list, for example Hyundai,Kia; the API fans out to one upstream dealer request per manufacturer. model may also be CSV; for dealer rows the API fans out valid make/model pairs, for example make=Hyundai,Kia&model=Avante,K5 becomes Hyundai Avante plus Kia K5 upstream searches. Without make, the request returns 400 validation_error (details.field: "make").
Vocabulary: make, model, and sub_model must resolve to LMN’s current dealer catalog or a documented compatibility alias. Unsupported values return 400 validation_error with details.field, details.value, and (for model fields) details.make. This replaces the previous silent-zero fallback. Values are case-insensitive; the legacy Mercedes Benz spelling and audited Lexus forms such as ES350/RX350 remain accepted.
Forbidden: Combining source=dealer with any auction-only filter returns 400 validation_error. The offending field is reported in details.field:
Filter parity gaps (dealer-only): A few filters supported on the auction side are silently dropped when applied to the dealer query because the upstream DSL doesn’t support them: multi-value
fuel, keyword, body_style. The auction half of a mixed request still honors these. (Note: transmission is applied to dealer rows via a post-filter, color is honored as a single value, and options_include is applied natively — see below.)
options_include for dealer: options_include is applied to dealer rows — it’s translated to Encar’s native Options. search DSL, with the same AND semantics as auction (a car must have all listed options). Two tokens are the exception: panoramic_sunroof and dashcam have no Encar filter equivalent, so a dealer request containing either returns 400 validation_error (details.field: "options_include", with the offending token named) rather than silently dropping it. This 400 is dealer-scoped — auction-only requests still accept every documented token — and is raised at validation time, so a mixed source=glovis,dealer request carrying one of these tokens returns 400 (not a degraded auction-only 200 with X-LMN-Partial-Dealer-Unavailable). Every other documented options_include token filters dealer rows normally. The full catalog of the 62 dealer-filterable tokens (and the 2 dealer-unsupported ones) is in options_include for dealer (full catalog) below.
Under-contract listings are hidden. A dealer listing marked under contract on Encar (계약중 — a buyer has placed a deposit) is excluded from GET /v1/vehicles results while the contract is active, the same as a listing Encar reports SOLD or WAIT. Unlike those two, it’s reversible — LMN carries no special state for it, so if the contract falls through, the listing simply reappears in results on the next request. Detail behaves the same way; see the 404 note under Dealer detail caveats. Eagle Eye watches report this transition as its own removal reason — see Removal reasons.
options_include for dealer (full catalog)
Use the table below as the
options_include token reference for dealer inventory filtering.options_include is applied to source=dealer results server-side — each token is translated to Encar’s native option facet, so dealer rows are filtered at the source rather than after the fact. Multiple values are AND-combined: a vehicle must have all requested options to match.
Tokens are case-insensitive snake_case (Sunroof, sunroof, and SUNROOF are equivalent).
Two documented option tokens are not available for dealer and return
400 validation_error (details.field: "options_include", with the offending token named): panoramic_sunroof and dashcam. Encar’s search filter exposes no facet for them. These two tokens still work for auction sources — the 400 is dealer-scoped (and applies to a mixed source=glovis,dealer request, since validation runs before the query fans out).Token is the value you pass in options_include; Option is the human-readable equipment name.
Exterior & Interior (17)
Exterior & Interior (17)
Safety (15)
Safety (15)
Convenience & Multimedia (18)
Convenience & Multimedia (18)
Seats (12)
Seats (12)
400): panoramic_sunroof, dashcam.
Auction sources currently support the original option set. Full parity for the newly-added dealer tokens on the auction side is a separate follow-up — for the auction half of a query, treat the tokens above as best-effort until parity ships.
Mixed source — first page only
A mixed query likesource=glovis,dealer&make=Hyundai works on the first page. Passing cursor together with mixed source returns 400 mixed_source_pagination_unsupported — paginate each source separately when iterating deeper than one page.
When sort=auction_date_asc (the default), the response budget is split: half the limit is allocated to auction rows (sorted by date ascending) and half to dealer rows (sorted by year descending, since dealer listings have no auction date). Other sort options (price_asc, price_desc, year_desc, mileage_asc) sort across the merged result set directly.
Dealer page limit
The dealer upstream caps page size at 48 regardless of thelimit you request. When limit > 48 and dealer is in scope, the dealer half is internally capped and the response includes X-LMN-Dealer-Page-Max: 48. Paginate dealer separately via cursor to retrieve more dealer rows.
Dealer upstream unavailability
The dealer half depends on external upstreams (Encar and Danawa). Two failure modes:- Pure dealer request fails (
source=dealeronly) →503 dealer_upstream_unavailableonly when every dealer source is down. If just one source fails, you still get a200 OKwith the surviving source’s rows plus the two degradation headers below. - Mixed request degrades (
source=glovis,dealer) →200 OKwith the auction rows (and any surviving dealer rows) plus two headers:X-LMN-Partial-Dealer-Unavailable: 1— a binary flag (always the literal1) signalling partial dealer degradation — andX-LMN-Dealer-Unavailable-Sources: <csv>, a comma-separated list of the failed dealer source names (encar,danawa, orencar,danawa). Check the flag for presence, read the source names fromX-LMN-Dealer-Unavailable-Sources. The auction half is still authoritative; retry the named dealer source(s) via a separatesource=dealerquery when you need them.
GET /v1/vehicles/encar_<id> returns 503 dealer_upstream_unavailable when the detail upstream is unreachable. 404 vehicle_not_found means the dealer listing is not currently available to buy: either the upstream explicitly returned 404 for that ID, the upstream detail page was still readable but marked the advertisement as SOLD or WAIT (both mean the listing is dead — Encar shows its own “sold or deleted” page for either), or the listing is under contract (계약중) on Encar — a buyer has placed a deposit but the sale hasn’t finalized — unless you have already created an order for that car, in which case the detail keeps resolving from your stored order-time snapshot (200) instead of returning 404, so a vehicle you’ve purchased survives delisting. The snapshot is scoped to your partner account and the key’s environment, so this recovery applies only to cars you ordered. Unlike SOLD / WAIT, an under-contract 404 is reversible — if the contract falls through, detail resolves normally again on LMN’s next check, with nothing to reset on your side. Dealer detail also attempts Encar inspection enrichment. When the inspection page is reachable, inspection_report is populated — dealer_inspection carries frame/exterior damage counts, body_condition.panels[] carries any damaged panels, and checklist[] carries the EN-translated mechanical inspection. A clean car returns a populated report with zero damage and a populated checklist (not null). inspection_report and body_condition are null only when Encar has no inspection record for the car (upstream 404) or the secondary fetch fails transiently; the rest of the detail still returns.
Response
id / vehicle_id values are auction listing IDs. They can change when the same physical car is re-listed in a later auction round. LMN matches same-car history internally by Korean license plate; use license_plate from the detail response when you need to identify the physical car.GET /v1/vehicles/{id} — Detail
Returns the full Vehicle Detail — Summary fields plus VIN, photos, body condition diagram, full inspection report, and price breakdown.ID format
The{id} path parameter is either:
- An auction listing ID with one of the source prefixes:
glovis_…,sk_…,aj_…,lotte_…,kcar_…. These are pulled fromGET /v1/vehicles(theidfield on each row). - A dealer (encar) listing ID with the prefix
encar_<numeric>. Detail for dealer IDs is served via a live proxy to the upstream; expect modestly higher latency than auction detail.
id you pass back must match exactly what GET /v1/vehicles returned. The auction-prefix IDs are not permanent physical-car identifiers — the same car may receive a different ID when re-listed in another auction round. Use license_plate on detail responses when you need the physical-car identifier.
Dealer detail caveats
Dealer detail responses differ from auction in three ways:pricing.breakdown.auction_feeis0;pricing.breakdown.dealer_feeis300(flat USD, not KRW-derived).pricing.discount_config.fixed_discount_amountis300, which offsets the dealer fee so net economic impact onestimated_landedis zero —estimated_landed = listing_price + lmn_commission + ocean_freight.pricing.auction_fee_config,pricing.market_assessment,comparables.past_sales,comparables.upcoming_sales, andpricing.historyare allnullor empty — these are auction-only concepts. (body_condition/inspection_reportare populated for dealer when Encar has an inspection record — see the dealer-inspection note above; they are not auction-only.)pricing.discount_configis populated but the bid-based fields (bid_threshold,rate_below,rate_at_or_above) are all0.404 vehicle_not_foundis returned when the dealer listing is not currently available to buy: the upstream either explicitly returns 404, still serves a parseable detail page but marks the advertisement asSOLDorWAIT, or the listing is under contract (계약중) on Encar. Exception: if you have already created an order for that car, detail instead returns your stored order-time snapshot (200) and does not 404 — purchased vehicles survive delisting (snapshot scoped to your account + environment). Under contract is reversible (unlikeSOLD/WAIT): detail resolves normally again once the contract falls through, with nothing to reset on your side. Other failure modes (timeout, 5xx, unexpected response shape) surface as503 dealer_upstream_unavailableso callers can distinguish “removed/sold listing” from “transient upstream issue.”
Response
- Unless explicitly documented otherwise, vehicle response monetary values are whole USD integers. This includes
pricing,comparables, andinspection_report.accident_cost_summary. pricing.breakdown.*fields may benullindividually when a cost component isn’t yet finalized.pricing.auction_fee_configexposes the source/category fee percentage plus min/max caps converted to whole USD with the response FX snapshot.percentageis a percent value (2.2means 2.2%, not0.022). LMN calculatespricing.breakdown.auction_feeinternally from source/category KRW rules, applies KRW caps, then converts to USD.pricing.market_assessmentisnullfor dealer-source vehicles (no auction market to compare against).comparables.past_salesis sold-only and empty for dealer vehicles or when no matching sold comps exist in the past 4 weeks.comparables.upcoming_salescontains comparable future auction options and is empty when none exist. It does not includesold_price.pricing.historycontains auction appearances for the same physical car, matched internally by Korean license plate across supported auction sources. Eachpricing.history[].vehicle_idis the listing ID for that auction round and may differ from the current responseid. It is empty when the car has no known prior/current auction appearances with a usable listed price.body_condition/inspection_reportare populated for dealer-source vehicles when Encar has an inspection record;nullonly when the upstream inspection is missing (404) or the secondary fetch fails transiently.body_condition.image_urlis returned only when LMN has a mirrored HTTPS image. Upstream auction-site image URLs are not exposed; usepanels[]whenimage_urlisnull.vinandlicense_platemay benullfor pre-auction listings.fuel,transmission,colormay benullfor rare upstream data gaps.
Pricing
Field-level reference for thepricing object — including listing_price, sold_price, auction_fee_config, discount_config, breakdown (with symmetric auction_fee/dealer_fee integers and post-discount estimated_landed notes), history, and market_assessment — lives in the Vehicle schema: Schemas → Vehicle → pricing. All monetary values inside pricing are whole USD integers.
pricing.breakdown.estimated_landed is the only field that’s already post-discount; everything else (listing_price, sold_price, the line-item costs in breakdown) is gross. To get an exact landed total for your specific bid (rather than LMN’s illustrative number against an internal basis price), use the recompute formula below.
Recomputing landed cost for your bid
estimated_landed is a comparison aid, not a quote. For exact bid planning, recompute using your intended bid (all amounts in USD):
ocean_freight is not a fixed constant. It is resolved per vehicle: Mercedes-Benz is 1800 for any body type; other makers are 1800 for SUV-class (SUV, minivan, van, truck) and 1500 for sedan-class (sedan, compact, wagon, coupe, convertible); an unknown body type uses 1500. Always read pricing.breakdown.ocean_freight from the response instead of hardcoding a value.
Caveats
- **FX rounding (±1 difference vs. LMN’s KRW-side math. The invoice is authoritative.
- Planned bid vs. actual purchase price.
your_bid_usdis the partner’s intended bid — typically a ceiling. At settlement, LMN recomputes auction fee and discount against the actual hammer price (purchase_price_usdon the order), which may be lower thanmax_bid_amount_usd. The invoice reflects what was actually won at, not the ceiling. listing_pricevs. internal basis. The basis used forestimated_landedissold_priceif available, otherwise LMN’s market-derived final-price estimate, otherwise the auction starting price. For unsold cars with no estimate this happens to equallisting_price, butlisting_priceitself does not drive the calculation in all cases.
Similar-sales definition
Thecomparables.past_sales array surfaces up to 20 comparable cars that sold in the past 4 weeks. The comparables.upcoming_sales array uses the same match rules but only includes future upcoming auction options.
Sort order is by auction date descending (most recent first).
past_sales never includes upcoming; future alternatives are returned only in upcoming_sales.
These defaults match LMN’s internal “Market Comparison” logic shown in the web UI, so the partner API returns the same comp set an LMN operator would see for the same vehicle.
Market assessment (pricing.market_assessment)
A derived server-side summary so you don’t have to compute comp medians client-side. Runs on the comparables.past_sales set (sold comps only) and compares their starting-price median to your current listed/estimated price.
diff_percent is the % the current listed/estimated price is below (positive) or above (negative) the comp median. price_drop, when present, reports how the same vehicle’s starting price has moved across prior auction rounds — useful in combination with the label (a good + 2-round drop is a different signal than good + first appearance).
This is an advisory signal, not a valuation guarantee. It reflects starting prices of comps in the
past_sales window, not expected auction-day outcomes. Always apply your own deal logic on top.Errors
Full
Vehicle schema in Schemas.