Discover/biluppgifter.se API
live

biluppgifter.se APIbiluppgifter.se

Access Swedish vehicle details, valuations, ownership history, and make/model listings via the Biluppgifter.se API. Look up any plate number in 7 endpoints.

Endpoints
7
Updated
14d ago
Try it
Swedish vehicle registration number (e.g. ABC001, GHF663).
api.parse.bot/scraper/2125a37d-f7d6-485a-8982-22ac584a14d3/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/2125a37d-f7d6-485a-8982-22ac584a14d3/get_vehicle_by_registration?regnr=ABC001' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Fetch detailed vehicle information by Swedish registration number. Returns make, model, technical specs, inspection history, owner history, and more. Some fields (exterior, interior, motorkod, tecdoc_id) require site login and will show 'Logga in'.

Input
ParamTypeDescription
regnrrequiredstringSwedish vehicle registration number (e.g. ABC001, GHF663).
Response
{
  "type": "object",
  "fields": {
    "color": "string, vehicle color in Swedish",
    "power": "string, engine power",
    "mileage": "string, odometer reading with unit (e.g. '30 732 mil')",
    "model_year": "string, model year",
    "transmission": "string, transmission type (e.g. 'Automat')",
    "owner_history": "array of objects with date and type",
    "history_events": "array of objects with date, title, description",
    "registration_number": "string, the queried plate number"
  },
  "sample": {
    "data": {
      "color": "Mörkgrå",
      "modell": "5 Touring",
      "status": "I Trafik",
      "mileage": "30 732 mil",
      "fabrikat": "BMW",
      "model_year": "2014",
      "antal_ägare": "4",
      "transmission": "Automat",
      "owner_history": [
        {
          "date": "2024-05-14",
          "type": "Privatperson"
        }
      ],
      "history_events": [
        {
          "date": "2026-02-24",
          "title": "Besiktigad",
          "description": "Godkändkontrollbesiktning vid 30 732 mil."
        }
      ],
      "först_registrerad": "2013-10-30",
      "registration_number": "ABC001"
    },
    "status": "success"
  }
}

About the biluppgifter.se API

The Biluppgifter.se API covers 7 endpoints for querying the Swedish vehicle registry, returning technical specs, inspection history, market valuations, and ownership records by registration plate. get_vehicle_by_registration alone surfaces over a dozen fields — color, power, transmission, mileage, owner history, and more — for any Swedish plate number. Separate endpoints handle valuation time series, event history, partial plate search, and make/model enumeration.

Vehicle Lookup and History

get_vehicle_by_registration accepts a Swedish registration number (e.g. GHF663) and returns technical attributes including color, power, transmission, model_year, and mileage in Swedish mil, plus owner_history (an array of dated ownership changes with type) and history_events (dated events with title and description). Note that a small set of fields — exterior, interior, motorkod, and tecdoc_id — require a biluppgifter.se account and will return 'Logga in' rather than real values. For a focused history pull without the full detail payload, get_vehicle_history returns only the chronological history_events array, covering inspections, traffic status changes, and past advertisements.

Valuation and Ownership

get_vehicle_valuation takes a regnr and an optional mileage integer (in Swedish mil, where 1 mil = 10 km). When mileage is omitted the endpoint auto-fetches it from the vehicle record. The valuation_history array contains objects with value (integer SEK), type (historic, current, or forecast), and date (YYYY-MM-DD), giving a time series suitable for plotting price trends. dealer_price_range and private_price_range may return empty strings without a site login. get_vehicle_owner_info returns owner_history with each entry typed as Privatperson, Bilhandlare, or Företag, plus an owner_summary field; individual owner names require BankID authentication and are not returned by any endpoint.

Search and Make/Model Catalog

search_vehicles_by_partial_plate accepts a plate prefix such as ABC or GHF and returns matching vehicles with registration_number, make_model, year, color, and type. The query must be a valid Swedish plate prefix — make or model name queries return an empty list. list_makes enumerates all makes in the registry with name, slug, origin (ISO country code), and volume (registered vehicle count). get_make_details takes a make_slug (e.g. volvo, bmw) and returns all associated models with their own slugs, useful for building browsable catalogs or validation lists.

Common use cases
  • Retrieve full technical specs and inspection history for a fleet vehicle using its registration plate
  • Plot a vehicle's SEK market value over time using the valuation_history time series from get_vehicle_valuation
  • Verify ownership type changes (private, dealer, company) before a used car purchase via get_vehicle_owner_info
  • Build a registration plate autocomplete feature using search_vehicles_by_partial_plate with plate prefix inputs
  • Enumerate all Swedish-registered makes and their volumes with list_makes for fleet analytics or market research
  • Populate a make/model selector for a car listing form using list_makes and get_make_details slugs
  • Monitor a vehicle's traffic status and advertisement history chronologically using get_vehicle_history
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 biluppgifter.se have an official developer API?+
Biluppgifter.se does not publish an official public developer API. The Parse API provides structured access to the same registry data through seven well-defined endpoints.
What does `get_vehicle_valuation` return, and do I need to supply a mileage value?+
get_vehicle_valuation returns a valuation_history array of objects each containing a value in SEK, a type (historic, current, or forecast), and a date. The mileage parameter is optional — if you omit it, the endpoint fetches the vehicle's current odometer reading automatically. dealer_price_range and private_price_range may be empty strings; they require a biluppgifter.se login to populate.
Are individual owner names available through `get_vehicle_owner_info`?+
No owner names are returned. The endpoint provides owner_history entries with date and type (e.g. Privatperson, Bilhandlare, Företag) and an owner_summary count. Detailed owner identity requires BankID authentication on biluppgifter.se and is not available through any endpoint. The API covers ownership type and timing data. You can fork it on Parse and revise to attempt to surface additional public ownership metadata if biluppgifter.se exposes it without authentication.
Can I search for vehicles by make or model name rather than plate prefix?+
Not currently. search_vehicles_by_partial_plate only matches against the beginning of a Swedish registration plate number — make or model name queries return an empty list. list_makes and get_make_details let you enumerate makes and models. You can fork it on Parse and revise to add a dedicated make/model vehicle search endpoint if that capability becomes available.
Which fields in `get_vehicle_by_registration` require a site login?+
Four fields return 'Logga in' instead of real data without a biluppgifter.se account: exterior, interior, motorkod, and tecdoc_id. All other fields — including color, power, mileage, transmission, model_year, owner_history, and history_events — are returned without authentication.
Page content last updated . Spec covers 7 endpoints from biluppgifter.se.
Related APIs in AutomotiveSee all →
acura.ca API
Check current Acura vehicle deals, financing rates, lease payments, and incentives across all Canadian provinces and models including the ADX, ZDX, MDX, RDX, Integra, and TLX. Calculate payment options based on specific offers and models available by province.
getfpv.com API
Search and browse products from GetFPV's catalog of FPV drone components and accessories. Retrieve listings by keyword or category, view detailed product specifications, pricing, and stock status, and explore new arrivals and current sales.
firetruckmall.com API
Browse all available fire trucks from Fire Truck Mall with complete details including pricing, year, specifications, and images. Track when each listing was posted to find the newest inventory and compare vehicles across the marketplace.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
team-bhp.com API
Access forum discussions, travelogues, news articles, and user profiles from Team-BHP.com to discover automotive insights, travel stories, and community conversations. Search threads, browse categories, and find trending discussions all in one place.
mazda.ca API
Find current vehicle deals, financing rates, lease options, and incentives across all Mazda Canada models and trims, with pricing tailored to your province. Get instant payment quotes to compare your options and discover the best offers available.
carjam.co.nz API
Look up detailed New Zealand vehicle information by license plate, VIN, or chassis number to instantly access registration status, WOF/COF compliance, service history, odometer readings, and damage records. Verify if a vehicle is stolen and get comprehensive specs to make informed decisions before purchasing or for fleet management.