List Projects
curl --request GET \
--url https://api.example.com/v1/projectsimport requests
url = "https://api.example.com/v1/projects"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/projects', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/projects",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/projects"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/projects")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/projects")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyEndpoints
List Projects
Retrieve a paginated list of all projects in your organization
GET
/
v1
/
projects
List Projects
curl --request GET \
--url https://api.example.com/v1/projectsimport requests
url = "https://api.example.com/v1/projects"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/projects', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/projects",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/projects"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/v1/projects")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/projects")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyList Projects
Returns a paginated list of all projects in your organization.Request
curl "https://api.dronelist.io/v1/projects" \
-H "X-API-Key: dl_your_key_here"
Query parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
page | integer | 1 | Page number (1-indexed) |
limit | integer | 20 | Items per page (max 100) |
status | string | — | Filter by project status. Valid values: DRAFT, CONFIRMED, SCHEDULED, IN_PROGRESS, DELIVERED, INVOICED, COMPLETED, CANCELLED, ON_HOLD. Invalid values are silently ignored |
Response
{
"success": true,
"data": [
{
"id": "proj_def456",
"title": "Highway Bridge Inspection Q1",
"description": "Quarterly structural inspection of the I-90 bridge",
"status": "IN_PROGRESS",
"projectType": "inspection",
"siteAddress": "I-90 Bridge, Springfield",
"agreedPrice": 15000,
"estimatedCost": 8500,
"currency": "USD",
"scheduledDate": "2025-03-15T00:00:00.000Z",
"clientAccountName": "Springfield DOT",
"assignedPilotName": "Jane Smith",
"createdAt": "2025-02-20T08:00:00.000Z",
"updatedAt": "2025-03-10T11:45:00.000Z"
}
],
"meta": {
"pagination": {
"page": 1,
"limit": 20,
"total": 12,
"hasMore": false
}
}
}
The detail endpoint returns two additional fields:
clientAccountEmail and crmDealName. Use Get Project Details for the full record.Required scope
project:read
Errors
| Status | Code | Description |
|---|---|---|
401 | UNAUTHORIZED | Missing or invalid API key |
403 | FORBIDDEN | API key lacks project:read scope |
500 | INTERNAL_ERROR | Unexpected server error — retry with exponential backoff |
⌘I

