Modern, Fast & Powerful API Documentation
Version 1.0The Taqaseei API provides a simple and powerful interface for managing vehicle sighting reports and searching for license plates in the database.
Submit vehicle sighting reports with GPS coordinates, plate numbers, and optional images.
Quickly check if a license plate exists in the database with instant results.
Lightning-fast response times with 99.9% uptime guarantee.
https://yourdomain.com/api
Creates a new vehicle sighting report with location data and optional image.
GPS longitude of the sighting location (decimal format)
Type: number | Example: 46.7382
GPS latitude of the sighting location (decimal format)
Type: number | Example: 24.7136
License plate number to report
Type: string | Example: ABC1234
Base64-encoded image of the vehicle or plate
Type: string
POST /report
Content-Type: application/x-www-form-urlencoded
Longitude=46.7382&Latitude=24.7136&Plate=ABC1234&Imgbase64=iVBORw0KGgo...
Checks whether a given license plate exists in the database.
The license plate number to search for
Type: string | Example: ABC1234
Returns a boolean value:
true - Plate found in databasefalse - Plate not foundGET /search?Plate=ABC1234
Currently, the API does not require authentication. Ensure you implement proper security measures in production.
The API accepts application/x-www-form-urlencoded for POST requests.
Ensure all required parameters are provided. Missing parameters may result in errors or unexpected behavior.
Images should be encoded in Base64 format. Common image formats (JPEG, PNG) are supported.