Skip to content
vinieta.md Developers

Test Data

Pre-seeded vehicles, owners, and identifiers for testing against the sandbox.

The sandbox environment is pre-seeded with synthetic vehicles, owners, and identifiers so you can exercise every endpoint without real customer data. Every value below is fictitious and safe to use in requests.

The sandbox is periodically reset and re-seeded. These fixtures are always recreated, so you can rely on them being present.

The vehicle field is a vehicle registration certificate number. Two formats are accepted:

Type Format Example
Permanent exactly 9 digits 123456789
Temporary 1–2 letters followed by 4–9 digits AB1234567

Both formats work for RO and EU vignettes. The MD vignette does not take a certificate number at all — it is quoted from period + vehicle_category, and ordered with registration_number (plate) + identity_document.

Certificate Type Vehicle Category Owner Owner IDNP / IDNO
123456789 permanent Škoda Octavia (2020) A — car Andrei Ceban 2003009876540
987654321 permanent Dacia Logan (2021) A — car Andrei Ceban 2003009876540
520932710 permanent Mercedes 319 CDI (2019, 8 seats) A — minibus Andrei Ceban 2003009876540
111222333 permanent Knott B2515 (2018) F1 — trailer Andrei Ceban 2003009876540
222333444 permanent Toyota Corolla (2019) A — car Vasile Stratan (co-owner: Andrei Ceban) 2004001234567
333444555 permanent Volkswagen Golf (2020) A — car BT Leasing Moldova IFN SA (legal entity) 1005600002152
AB1234567 temporary Hyundai Tucson (2022) A — car Andrei Ceban 2003009876540

Suggested usage

  • RO Vignette987654321
  • EU Vignette123456789, the temporary AB1234567, or a foreign_vehicle payload (see Get Offers)
  • MD Vignette — no certificate needed; use any plate as registration_number with an IDNP below as identity_document
  • Co-owner pricing222333444
  • Leasing / legal-entity owner333444555

Use these for the identity_document field (MD vignette driver) and for person lookups. All pass IDNP checksum validation.

IDNP Name Notes
2003009876540 Andrei Ceban primary test person; owner of most test vehicles
2004001234567 Vasile Stratan registered owner of 222333444
2001038217947 Vlad Moraru
2004056123890 Ana Popescu
1975114567321 Ion Cojocaru
1003456789012 Sergiu Lupu
2008097654321 Maria Botnaru

Legal entity (IDNO): 1005600002152 — BT Leasing Moldova IFN SA.

IDNP/IDNO validator: https://github.com/iAsig/idnx-validator

A complete get-offers call for the RO vignette using the test data above:

Get Offers — Vignette (RO)
curl -X POST <base-url>/v1/get-offers \
-H "Content-Type: application/json" \
-H "X-Hmac-Signature: <partnerId>:<signature>" \
-d '{"product":"vignette:ro","vehicle":"987654321"}'

And for the EU vignette:

Get Offers — Vignette (EU)
curl -X POST <base-url>/v1/get-offers \
-H "Content-Type: application/json" \
-H "X-Hmac-Signature: <partnerId>:<signature>" \
-d '{"product":"vignette:eu","country":"bg","vehicle":"123456789","start_date":"2026-06-10"}'

The signature is generated from the request body exactly as described in Authentication. Your test base URL, Partner ID, and secret are issued to you individually.