Integrate Pezli services into your applications
Version: 1.0 | Last Updated: March 13, 2026
The Pezli API allows you to integrate our drone and AI solutions into your applications. All API requests require authentication using an API key.
https://api.pezli.com/v1
Include your API key in the request header:
Authorization: Bearer YOUR_API_KEY
POST /drones/control
Control drone operations and flight parameters.
{
"drone_id": "drone_001",
"action": "takeoff",
"parameters": {
"altitude": 100,
"speed": 10
}
}
POST /ai/analyze
Submit data for AI analysis and predictions.
{
"data_type": "image",
"data_url": "https://example.com/image.jpg",
"analysis_type": "object_detection"
}
GET /fleet/status
Get real-time status of your drone fleet.
{
"fleet_id": "fleet_001",
"include_details": true
}
GET /data/retrieve
Retrieve collected data and analytics.
{
"data_id": "data_001",
"format": "json",
"date_range": {
"start": "2026-03-01",
"end": "2026-03-13"
}
}
All responses are returned in JSON format:
{
"success": true,
"data": { ... },
"message": "Operation completed successfully",
"timestamp": "2026-03-13T12:00:00Z"
}
Errors are returned with appropriate HTTP status codes:
API requests are limited to 1000 requests per hour per API key. Rate limit information is included in response headers.
For API support and questions: