DocsLicense Plate Recognition API

License Plate Recognition API

Identify vehicle plate characters, confidence metrics, and bounding boxes using our high-accuracy LPR engine.

POSThttp://178.105.157.85:3000/api/ocr?type=LPR

Request Example

cURL
curl -X POST \
  "http://178.105.157.85:3000/api/ocr?type=LPR" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: multipart/form-data" \
  -F "image=@/path/to/document.jpg"

Authentication Header

Authorization: Bearer YOUR_API_KEY

Generate an API key from your Dashboard → API Keys panel. For testing server/sandbox local environments, key verification is bypassed.

Parameters

NameTypeRequiredDescription
imageFileYesVehicle registration/plate photo file (JPG, PNG)
detect_vehicle_typeBooleanNoIdentify if vehicle is a car, truck, or motorcycle

Headers

NameTypeRequiredDescription
AuthorizationStringYesBearer YOUR_API_KEY (Optional for local sandbox)
Content-TypeStringYesmultipart/form-data

Response Example

JSON
{
  "success": true,
  "data": {
    "plate": "B9359UOK",
    "confidence": 86.68,
    "box": [562, 71, 644, 101]
  },
  "confidence": 86.68,
  "processing_time": 0.22
}

Rate Limit

Depending on your plan. Check your dashboard for current limits.