The Best C# API for Global Vehicle Registration OCR (Free Image Testing)

Extract text from worldwide vehicle registration documents using C#. Upload a document image for a free test today and get standardized VINs and dynamically localized fields for SA, AE, VN, and DE seamlessly.

Global Vehicle Registration OCR extraction process diagram
StructOCR extracts standardized universal fields and dynamically mounts localized nodes based on the detected country.

The Problem with Parsing Global Registrations in C#

Enterprise .NET/C# applications often struggle to parse vehicle registration documents across different international borders. Traditional tools lack the ability to handle both standard global fields, like a 17-character VIN, and unique localized fields specific to countries like Saudi Arabia or the UAE. Furthermore, generic OCR models often destroy native scripts during extraction rather than preserving them.

The StructOCR Solution

Our API allows your .NET backend to automate data extraction from global vehicle registration documents effortlessly. It features a robust Standardized + Localized structure that unifies essential information like VIN, Make, and Model across all regions, while preserving native scripts in `_raw` fields. By sending a simple Base64 string via C#'s `HttpClient`, you receive validated JSON with dynamically mounted region-specific data nodes and strictly enforced ISO 3779 VIN validation.

Common Use Cases

  • Global Fleet Management: Extract standardized VIN, make, and model to onboard fleet vehicles instantly across different countries.
  • Border Control & Logistics: Process region-specific documents like Saudi Istimara or UAE Mulkiya at borders with specialized localized schemas.
  • Insurance Verification: Safely validate 17-character VINs automatically by relying on enforced ISO 3779 rules that correct common OCR mistakes.

Live Demo: Passport scanner

No registration required. Upload a file to test the extraction.

1
Upload
2
Results

Drop files here or click to browse

JPG · PNG · WebP  ·  up to 500 files · max 4.5 MB each

No files selected
Need more testing? Create a free account to get 200 free credits (equals 100 Passport scans).

Implementation: Raw API Request

Complete, runnable C# code to encode a vehicle document image in Base64 and extract registration data.

Prerequisite: .NET Core 3.1+ or .NET 5+ and System.Text.Json

CODE EXAMPLE
using System;
using System.IO;
using System.Net.Http;
using System.Text;
using System.Text.Json;
using System.Threading.Tasks;

namespace StructOCR_Client
{
    class Program
    {
        static async Task Main(string[] args)
        {
            string apiKey = "YOUR_API_KEY"; // Replace with your actual API key
            string imagePath = "path/to/your/document.jpg"; // Replace with the path to your image

            // 1. Read image and encode to Base64
            byte[] fileBytes = File.ReadAllBytes(imagePath);
            string base64Img = Convert.ToBase64String(fileBytes);

            // 2. Create JSON payload
            var payload = new { img = base64Img };
            string jsonPayload = JsonSerializer.Serialize(payload);

            // 3. Build the HTTP request (Requires application/json)
            using var client = new HttpClient();
            using var request = new HttpRequestMessage(HttpMethod.Post, "https://api.structocr.com/v1/vehicle-registration");
            
            request.Headers.Add("x-api-key", apiKey);
            request.Content = new StringContent(jsonPayload, Encoding.UTF8, "application/json");

            Console.WriteLine("Uploading Base64 image to StructOCR API...");

            // 4. Send the request and receive the response
            HttpResponseMessage response = await client.SendAsync(request);
            string responseBody = await response.Content.ReadAsStringAsync();

            // 5. Parse the JSON response
            using JsonDocument doc = JsonDocument.Parse(responseBody);
            JsonElement root = doc.RootElement;

            // 6. Extract the Registration data
            if (root.TryGetProperty("success", out JsonElement successVal) && successVal.GetBoolean())
            {
                JsonElement data = root.GetProperty("data");
                Console.WriteLine("✅ Extraction Successful!");
                Console.WriteLine("\n--- Raw Data ---");
                Console.WriteLine(JsonSerializer.Serialize(data, new JsonSerializerOptions { WriteIndented = true }));
            }
            else
            {
                string errorCode = root.TryGetProperty("code", out JsonElement code) ? code.GetString() : "Unknown Code";
                string errorMsg = root.TryGetProperty("message", out JsonElement msg) ? msg.GetString() : "Unknown Error";
                Console.WriteLine($"❌ Error [{errorCode}]: {errorMsg}");
            }
        }
    }
}

Technical Specs

  • Endpoint: POST https://api.structocr.com/v1/vehicle-registration
  • Input format: application/json payload with Base64 encoded string
  • File Constraints: Max 4.5MB (decoded). Compress to under 500 KB for best response time.
  • Supported Formats: Standard Data URI schemas, raw Base64 strings (JPG, PNG, WebP)
  • Output: JSON categorized into document, standardized, and localized nodes.

Key Features

  • Standardized + Localized Schema: Unifies universal specs while dynamically mounting localized fields for countries like SA, AE, VN, and DE.
  • Raw vs Normalized: Retains native language text in `_raw` fields and provides English standard terms in `_normalized` fields.
  • VIN Validation: Strictly enforces ISO 3779 rules for 17-character VIN extraction, safely correcting common OCR mistakes like 'O' to '0'.

Sample JSON Response

The API returns categorized data. This example shows a Saudi Arabia registration with standardized vehicle specs (using real brand and color entities) alongside purely structural mock data for local fields.

{
  "success": true,
  "data": {
    "document": {
      "country_code": "SA",
      "document_type": "VEHICLE_REGISTRATION",
      "confidence_score": 0.99
    },
    "standardized": {
      "vin": "FAKE0000000001234",
      "plate": {
        "number": "5678",
        "letters_normalized": "G H I",
        "formatted": "5678 GHI"
      },
      "make_raw": "فورد",
      "make_normalized": "Ford",
      "model_raw": "سيدان",
      "model_normalized": "Sedan",
      "year": 2021,
      "color_raw": "فضي",
      "color_normalized": "Silver"
    },
    "localized": {
      "saudi": {
        "tga_plate_details": {
          "sequence_number": "1020304050",
          "letter_right": "ز",
          "letter_middle": "ح",
          "letter_left": "ط",
          "number": "5678",
          "plate_type_raw": "نقل خاص",
          "plate_type_normalized": "Private Transport"
        }
      }
    }
  }
}

Frequently Asked Questions

How should I encode the image?

Send the image as a Base64 encoded string wrapped in a JSON payload. The Base64 string must not contain any internal whitespaces or newlines.

What is the maximum file size?

The maximum decoded payload restriction is 4.5MB. Exceeding this will trigger a 413 Payload Too Large error.

What happens if a country isn't explicitly supported?

For countries without specific strict schemas, the engine automatically extracts key-value pairs into a generic `unmapped_fields` dictionary.

You May Also Like

Related tutorials, platform guides, and comparisons

Tutorial

Go Vehicle Registration OCR API

Golang Vehicle Registration OCR API tutorial. Upload an image for a free test! Accurately extract standardized fields like VIN, make, and model, along with dynamically localized data for global documents.

Go · Vehicle Reg.
Tutorial

Node.js Vehicle Registration OCR API

Node.js Vehicle Registration OCR API tutorial. Upload an image for a free test! Accurately extract standardized fields like VIN, make, and model, along with dynamically localized data for global documents.

Node.js · Vehicle Reg.
Tutorial

Java Vehicle Registration OCR API

Java Vehicle Registration OCR API tutorial. Upload an image for a free test! Accurately extract standardized fields like VIN, make, and model, along with dynamically localized data for global documents.

Java · Vehicle Reg.
Tutorial

PHP Vehicle Registration OCR API

PHP Vehicle Registration OCR API tutorial. Upload an image for a free test! Accurately extract standardized fields like VIN, make, and model, along with dynamically localized data for global documents.

PHP · Vehicle Reg.
Tutorial

Python Vehicle Registration OCR API

Python Vehicle Registration OCR API tutorial. Upload an image for a free test! Accurately extract standardized fields like VIN, make, and model, along with dynamically localized data for global documents.

Python · Vehicle Reg.
Tutorial

C# Receipt OCR API

Upload an image for a free test! Integrate a robust Receipt OCR API into your C# .NET app. Accurately extract merchants, line items, taxes, and tips from crumpled thermal receipts.

C# · Receipt
Country Tutorial

Brazil CIN OCR Python SDK: Extract CPF & MRZ

Python Tutorial: Automate KYC in Brazil. Extract Portuguese text, CPF numbers, and validate TD1 MRZ from the new CIN using the StructOCR Python SDK.

Python · carteira de identidade (cin)
Country Tutorial

Belgium eID OCR Python SDK

Python Tutorial: Automate KYC in Belgium. Extract data from Electronic Identity Card (eID) using StructOCR Python SDK. Supports native text, National Register Number, and MRZ extraction.

Python · eid
Country Tutorial

Brazil Passport OCR with Python SDK

Use the official StructOCR Python SDK and FastAPI to extract structured MRZ and VIZ data from Brazil passports with a server-side integration.

Python · Passport
Country Tutorial

Bulgaria Lichna karta (Лична карта) OCR Python SDK

Python Tutorial: Automate KYC in Bulgaria. Extract Cyrillic/Latin text, EGN (ЕГН), and validate TD1 MRZ from Lichna karta using StructOCR Python SDK.

Python · lichna karta (лична карта)

Technical Comparisons & Integrations

Explore platform integrations and competitive analysis

From tutorial to production in 5 minutes.

You've seen the code. Now get your API key, grab your 200 free credits, and see it work with your own images. No credit card required.

Instant Access Cancel Anytime 99.9% Uptime