Get Project Details
curl --request GET \
--url https://api.example.com/v1/projects/{id}import requests
url = "https://api.example.com/v1/projects/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/projects/{id}', 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/{id}",
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/{id}"
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/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/projects/{id}")
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
Get Project Details
Retrieve full project details including client, schedule, and cost fields not available in the list endpoint
GET
/
v1
/
projects
/
{id}
Get Project Details
curl --request GET \
--url https://api.example.com/v1/projects/{id}import requests
url = "https://api.example.com/v1/projects/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/projects/{id}', 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/{id}",
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/{id}"
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/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/projects/{id}")
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_bodyGet Project Details
Returns the full details for a specific project, including fields not available in the list endpoint.Request
curl "https://api.dronelist.io/v1/projects/proj_def456" \
-H "X-API-Key: dl_your_key_here"
Path parameters
| Parameter | Type | Description |
|---|---|---|
id | string | Project ID (e.g., proj_def456) |
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",
"clientAccountEmail": "ops@springfielddot.gov",
"assignedPilotName": "Jane Smith",
"crmDealName": "Springfield Q1 Infrastructure Package",
"createdAt": "2025-02-20T08:00:00.000Z",
"updatedAt": "2025-03-10T11:45:00.000Z"
}
}
This endpoint returns
clientAccountEmail and crmDealName which are not included in the list response.Required scope
project:read
Errors
| Status | Code | Description |
|---|---|---|
401 | UNAUTHORIZED | Missing or invalid API key |
403 | FORBIDDEN | API key lacks project:read scope |
404 | NOT_FOUND | Project not found or belongs to another organization |
500 | INTERNAL_ERROR | Unexpected server error — retry with exponential backoff |
⌘I

