Taqaseei API

Modern, Fast & Powerful API Documentation

Version 1.0

Overview

The Taqaseei API provides a simple and powerful interface for managing vehicle sighting reports and searching for license plates in the database.

Report Sightings

Submit vehicle sighting reports with GPS coordinates, plate numbers, and optional images.

Search Plates

Quickly check if a license plate exists in the database with instant results.

Fast & Reliable

Lightning-fast response times with 99.9% uptime guarantee.

Base URL

https://yourdomain.com/api

API Endpoints

POST /report

Creates a new vehicle sighting report with location data and optional image.

Parameters

Longitude REQUIRED

GPS longitude of the sighting location (decimal format)

Type: number | Example: 46.7382

Latitude REQUIRED

GPS latitude of the sighting location (decimal format)

Type: number | Example: 24.7136

Plate REQUIRED

License plate number to report

Type: string | Example: ABC1234

Imgbase64 OPTIONAL

Base64-encoded image of the vehicle or plate

Type: string

Example Request

POST /report Content-Type: application/x-www-form-urlencoded Longitude=46.7382&Latitude=24.7136&Plate=ABC1234&Imgbase64=iVBORw0KGgo...

Try It Out

GET /search

Checks whether a given license plate exists in the database.

Parameters

Plate REQUIRED

The license plate number to search for

Type: string | Example: ABC1234

Response

Returns a boolean value:

  • true - Plate found in database
  • false - Plate not found

Example Request

GET /search?Plate=ABC1234

Try It Out

Additional Information

Authentication

Currently, the API does not require authentication. Ensure you implement proper security measures in production.

Content Type

The API accepts application/x-www-form-urlencoded for POST requests.

Error Handling

Ensure all required parameters are provided. Missing parameters may result in errors or unexpected behavior.

Image Format

Images should be encoded in Base64 format. Common image formats (JPEG, PNG) are supported.