The Number Plate Detection API is a powerful tool designed to automatically identify and read vehicle license plates from images. Utilizing advanced machine learning algorithms, this API delivers high accuracy and efficiency, making it ideal for applications in traffic management, security, and automation.
Request URL:- {{apiURL}}Vehicle/NumberPlateDetect
Method Type:-POST
Headers:-
Content-Type : application/json
Subscriptionkey : xxxxxxxxxxxx
{
  "encoded_image": "string"
}
                                    
                                | Param | Required | Type | Description | 
|---|---|---|---|
| encoded_image | Yes | String | Base64 encoded string of image. | 
[
  {
  "code": 0,
  "message": "string",
  "errorMessage": "string",
  "numberPlates": [
    {
      "boundingBox": {
        "x": "number",
        "y": "number",
        "height": "number",
        "width": "number"
      },
      "confidence": "float",
      "numberPlateText": "string",
      "numberPlateTextConfidence": "float"
    }
  ]
}
]
                                    
                                | Param | Type | Description | 
|---|---|---|
| code | int | Code. | 
| message | string | message. | 
| errorMessage | string | A human readable description of error. | 
| vehicles | array | List of detected vehicles. | 
| boundingBox | object | bounding box of the detected vehicles. | 
| x | int | x-edge of the vehicle. | 
| y | int | y-edge of the vehicle. | 
| height | int | height of the vehicle from y. | 
| width | int | width of the vehicle from x. | 
| confidence | float | confidence of the detected vehicle. | 
| numberPlateText | string | number plate text (number). | 
| numberPlateText Confidence | float | confidence of the detected number plate text. . | 
| Error Code | Message | 
|---|---|
| 200 | Success. | 
| 401 | Access denied due to invalid subscription key or wrong API endpoint. Make sure to provide a valid key for an active subscription. | 
| 400 | Invalid request. Please pass valid json with all required parameters. Not valid biometric data or invalid format. The input is not a valid Base-64 string. | 
| 500 | Something went wrong, please try again later. |