A dealer is offered a vehicle from France, a recycler one from Poland. The documents follow foreign layouts, the fields are named differently, and the identification number is not where you know it from at home. Retyping means mistyping; having it translated costs days.
The international document reading delivers both: the canonical fields in a uniform structure and alongside them the original value with its source code. The identification number read is then the key to vehicle data, recalls and the revenue estimate — without a single translation.
| Surface | Roles |
|---|---|
| Hub | Vehicle trading, Vehicle recyclers, Fleet and leasing |
What this case requires
- The registration document as a retrievable file. The call takes
fileUrlorimageUrl; for personal documents only thestandardlevel is provided. - The entitlement to process. Registration documents and plates are personal data and need a legal basis.
- Photos of the vehicle showing the plate. Plate reading takes up to three images.
- A framework for the revenue estimate. Country, condition and vehicle type determine which market it is calculated against.
- The entitlement to query the vehicle. With the call you confirm that you are the keeper, the owner or demonstrably authorised or otherwise legally entitled, and that you use the identification number solely for the stated permissible purpose.
The sequence
The table names the responsible call per stage and what exists afterwards. The reasoning for why a stage cannot be skipped follows below it.
| Stage | Call | What exists afterwards |
|---|---|---|
| Read the document | POST /scanner/document/registration/international | document.countryCode, vehicle.vin, inspection.validUntil — and fields with the original sourceValue |
| Read the plate | POST /vision/license-plate | text, country and confidence per plate — without any keeper or register lookup |
| Identify the vehicle | GET /vin/{vin}/vehicle | Series and technical attributes for the identification number read |
| Check recalls | GET /recalls/vehicles/{vin} | Hits from the official registers, each with its data status |
| Estimate the revenue | GET /vin/{vin}/economic-evaluation | A purchase recommendation on the minimum, before negotiating |
Why each stage is needed
- Read the document.
POST /scanner/document/registration/internationalreturnsdocumentwithcountryCodeanddocumentType,registration,holder,inspectionwithvalidUntil, andvehiclewithvin,makeandfuelType. Infieldsevery field additionally appears withsourceCodeandsourceValue— so what the original said stays verifiable. - Read the plate.
POST /vision/license-platereads per platetext,normalized,country,confidence,positionandobstructions. Only what is in the image is output: no keeper lookup, no register match, no statement on whether the plate is genuine. Matching it with the document is your plausibility check. - Identify the vehicle.
GET /vin/{vin}/vehiclereturns series and technical attributes for the identification number read. The vehicle data come from reference data, not from the foreign document — and are therefore independent of its layout. - Check recalls.
GET /recalls/vehicles/{vin}returns the hits from the official registers with their data status. An open recall changes the purchase price, and it is easier to negotiate before buying than after. - Estimate the revenue.
GET /vin/{vin}/economic-evaluationtakescountry,conditionandvehicleTypeand returns a purchase recommendation on the price minimum. This recommendation is thus available before negotiating and must be verified independently before use.
curl -X POST \
-H 'X-Api-Key: <API_KEY>' \
-H 'Content-Type: application/json' \
-H 'Idempotency-Key: ankauf-import-fr-0412' \
-d '{"fileUrl":"https://example.com/zulassung-frankreich.pdf","quality":"standard"}' \
'https://api.tapinomahub.com/scanner/document/registration/international'What you end up with
What remains is a purchase whose data come from the original document and from reference data rather than a translation — with a read plate, a known recall status and a purchase recommendation before the first round of negotiation.
Where to find this in the documentation
The binding field lists, error codes and sample responses live in this surface’s OpenAPI contract at docs.tapinomahub.com (tapinoma-hub). All use cases arranged by surface and role: overview of the use cases.
Sources and legal references
Frequently asked
Which countries are read?
The binding list of document profiles lives in the OpenAPI contract. The response names the recognised country, profile and document type in document.
Why do original values sit next to the canonical fields?
So that what the document said stays verifiable. sourceCode and sourceValue show the original, code and value the unified form.
Does plate reading check whether the vehicle is registered?
No. It only reads what is in the image. There is no keeper lookup and no register match.
