Skip to content

Public Articles Get

Request

Fetch one article by its partner-supplied article_number.

Path
article_numberstring(Article Number)^[A-Za-z0-9._\-]{1,255}$required
Headers
authorizationstring or null(Authorization)

Bearer <mrc_live_…> API key

curl -i -X GET \
  'https://docs.mercura.ai/_mock/openapi/articles/{article_number}' \
  -H 'authorization: string'

Responses

Successful Response

Bodyapplication/json
idstring(Id)required

Public id; equals the article's article_number

Example:"LEU-1500-50-840"
article_numberstring(Article Number)required
Example:"LEU-1500-50-840"
namestring(Name)required
Example:"LED-Feuchtraumleuchte 1500 mm 50 W 4000 K IP65"
descriptionstring or null(Description)
Example:"LED-Feuchtraumwannenleuchte, 1500 mm, 50 W, 6500 lm, 4000 K neutralweiß, Schutzart IP65, Polycarbonat-Gehäuse, inkl. Durchgangsverdrahtung."
manufacturerstring or null(Manufacturer)
Example:"Lumaris"
manufacturer_article_numberstring or null(Manufacturer Article Number)
Example:"LM-DP1500-50"
ean_numberstring or null(Ean Number)
Example:"4260001234562"
seriesstring or null(Series)
Example:"AquaLine PRO"
categorystring or null(Category)
Example:"Feuchtraumleuchte"
unitstring or null(Unit)
Example:"Stk"
list_pricestring or null(List Price)^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:"89.90"
delivery_quantitystring or null(Delivery Quantity)^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:"1"
custom_attributesobject or null(Custom Attributes)
Example:
{ "lichtfarbe": "4000K", "lichtstrom_lm": "6500", "schutzart": "IP65" }
tagsArray of strings(Tags)

Tag names assigned to the article

Example:
[ "LED", "Eigenmarke" ]
etim_featuresArray of objects(Etim Features)

ETIM classification features stored for the article

Example:
[ { "etim_code": "EF000008", "human_label": "Nennspannung", "type": "number", "value_number": 230 }, { "etim_code": "EF000131", "human_label": "Mit Anschlussleitung", "type": "boolean", "value_boolean": true } ]
is_diverseboolean(Is Diverse)
Default:false
Example:false
is_legacy_articleboolean(Is Legacy Article)
Default:false
Example:false
is_deletedboolean(Is Deleted)
Default:false
Example:false
created_atstring, (date-time)(Created At)required
Example:"2026-01-15T08:30:00Z"
updated_atstring, (date-time)(Updated At)required
Example:"2026-07-14T09:12:44Z"
Response
{ "article_number": "LEU-1500-50-840", "category": "Feuchtraumleuchte", "created_at": "2026-01-15T08:30:00Z", "custom_attributes": { "lichtfarbe": "4000K", "lichtstrom_lm": "6500", "schutzart": "IP65" }, "delivery_quantity": "1", "description": "LED-Feuchtraumwannenleuchte, 1500 mm, 50 W, 6500 lm, 4000 K neutralweiß, Schutzart IP65, Polycarbonat-Gehäuse, inkl. Durchgangsverdrahtung.", "ean_number": "4260001234562", "etim_features": [ {}, {} ], "id": "LEU-1500-50-840", "is_deleted": false, "is_diverse": false, "is_legacy_article": false, "list_price": "89.90", "manufacturer": "Lumaris", "manufacturer_article_number": "LM-DP1500-50", "name": "LED-Feuchtraumleuchte 1500 mm 50 W 4000 K IP65", "series": "AquaLine PRO", "tags": [ "LED", "Eigenmarke" ], "unit": "Stk", "updated_at": "2026-07-14T09:12:44Z" }