Registration Number Detection

This endpoint allows you to detect a vehicle registration number from an uploaded image file.

POST /api/vision/detect/rno

curl --location '{{url}}/api/vision/detect/rno' \
--header 'Content-Type: application/json' \
--header 'key-id: <SecretCode>' \
--form 'file=@"<YourFile>"'

Request Requirements

  • IP Whitelisting: The requesting IP must be whitelisted by ReadyAssist.

  • Authentication: A dedicated Secret Key is required, provided in the key-id header.

Headers

Name
Value

Content-Type

application/json

key-id

{{secret_code}}

Body

Parameter
Type
Description

file

File

The image file containing the vehicle registration number.

Notes

  • Ensure the image file is clear and contains a visible vehicle registration number for accurate detection.

  • Ensure image is at its best compressed version to get the response faster.

  • Max. image size is 3Mb.

Response

The response format depends on the API implementation. Typically, it includes the detected registration number or an error message.


Last updated