POST /api/eprel/products
Price: 1 credit
Look up one model in EPREL, the EU register every product carrying an EU energy label must be entered into, by its registration number and product group. Returns the energy class and the scale it is measured on, the model identifier and supplier or trademark, the registration status and version, on-market start and end dates, the countries the model is declared available in, the supplier's registered organisation and contact address, any supplier notes, and the full technical record the group's regulation requires — compartment volumes, dimensions, noise, consumption, tyre grip and rolling-noise classes, panel technology, and so on, under the field names the registry publishes.
A bare registration number will not resolve on its own — the registry only serves a model under its own product group, so pass `product_group` too. A number that is valid under a different group answers 412, not someone else's product, so a wrong guess is safe but costs a call; if the group is unknown, the only route is to try the plausible ones. Energy classes are not comparable across groups: read `energy_class_range` to see which scale the letter belongs to, because an A on a A-G scale and an A on an A-E scale mean different things, and older regulations use APP/APPP for what is now A. The regulation-specific measurements live in `attributes` under the registry's own field names, which differ by product group; the same names are what `eprel/products/search` accepts as `filters`.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)product_group string required — Product group the registration number belongs to. The registry has no group-less lookup, so this must match the group the model was registered under (one of: "airconditioners", "dishwashers", "dishwashers2019", "electronicdisplays", "hotwaterstoragetanks", "lamps", "lightsources", "localspaceheaters", "ovens", "professionalrefrigeratedstoragecabinets", "rangehoods", "refrigeratingappliances", "refrigeratingappliances2019", "refrigeratingappliancesdirectsalesfunction", "residentialventilationunits", "smartphonestablets20231669", "solidfuelboilerpackages", "solidfuelboilers", "spaceheaterpackages", "spaceheaters", "spaceheatersolardevice", "spaceheatertemperaturecontrol", "televisions", "tumbledriers", "tumbledryers20232534", "tyres", "washerdriers", "washerdriers2019", "washingmachines", "washingmachines2019", "waterheaterpackages", "waterheaters", "waterheatersolardevices"; examples: "refrigeratingappliances2019", "tyres")registration_number string required — EPREL registration number of the model, as printed on the energy label QR code (examples: "2836291", "296927", "2384029"; minLength: 1)@type string (default: "EprelProduct")id string requiredurl string requiredproduct_group string requiredmodel_identifier string nullablesupplier string nullableenergy_class string nullableenergy_class_range string nullableenergy_label_id string nullableimplementing_act string nullablestatus string nullableform_type string nullableregistrant_nature string nullableis_blocked boolean nullableis_last_version boolean nullableis_visible_to_uk_msa boolean nullablehas_generated_label boolean nullableuploaded_labels array (default: [])version_id string nullableversion_number number nullableproduct_model_core_id string nullabletrademark_id string nullabletrademark_owner string nullabletrademark_verification_status string nullableorganisation_verification_status string nullableavailability_in_eu_eea_countries string nullableavailable_in_countries array (default: [])available_in_eu_eea_countries array (default: [])available_in_other_countries array (default: [])on_market_start_at integer nullableon_market_end_at integer nullableon_market_first_start_at integer nullablefirst_published_at integer nullablepublished_at integer nullableexported_at integer nullableimported_at integer nullablecontact_id string nullablecontact object nullable@type string (default: "EprelContact")id string nullableservice_name string nullableemail string nullablephone string nullableweb_url string nullablestreet string nullablestreet_number string nullableaddress_block string nullablepostal_code string nullablecity string nullablemunicipality string nullableprovince string nullablecountry string nullablestatus string nullableorder_number integer nullableis_default boolean nullableis_specific boolean nullablecontact_reference string nullablecontact_by_reference_id string nullableorganisation object nullable@type string (default: "EprelOrganisation")id string nullablename string nullabledisplay_name string nullablefirst_name string nullablelast_name string nullableperson_type string nullableweb_url string nullableis_closed boolean nullableclose_status string nullableclosed_at integer nullableadditional_infos array (default: [])@type string (default: "EprelAdditionalInfo")id string nullablelanguage string nullableorder_number integer nullabletext string nullableattributes object (default: {})422 — The request body did not validate Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — No model with that registration number is registered under that product group. Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.