Get Service Details
curl --request GET \
--url https://api.example.com/v1/services/{id}import requests
url = "https://api.example.com/v1/services/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/services/{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/services/{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/services/{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/services/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/services/{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 Service Details
Retrieve full details and pricing tiers for a specific service by ID using the dronelist.io API
GET
/
v1
/
services
/
{id}
Get Service Details
curl --request GET \
--url https://api.example.com/v1/services/{id}import requests
url = "https://api.example.com/v1/services/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/services/{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/services/{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/services/{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/services/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/services/{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 Service Details
Returns the full details for a specific service, including its pricing tiers.Request
curl "https://api.dronelist.io/v1/services/svc_ghi789" \
-H "X-API-Key: dl_your_key_here"
Path parameters
| Parameter | Type | Description |
|---|---|---|
id | string | Service ID (e.g., svc_ghi789) |
Response
{
"success": true,
"data": {
"id": "svc_ghi789",
"name": "Aerial Surveying & Mapping",
"description": "High-precision topographic surveys using RTK-enabled drones with centimeter-level accuracy",
"baseRate": 75.00,
"currency": "USD",
"unitType": "acre",
"pricingModel": "per_unit",
"isActive": true,
"displayOrder": 1,
"tiers": [
{
"id": "tier_001",
"tierName": "Standard",
"tierLevel": 1,
"priceModifierPercent": 0,
"isRecommended": false,
"isActive": true
},
{
"id": "tier_002",
"tierName": "Premium",
"tierLevel": 2,
"priceModifierPercent": 25,
"isRecommended": true,
"isActive": true
}
],
"createdAt": "2025-01-10T12:00:00.000Z",
"updatedAt": "2025-02-28T16:30:00.000Z"
}
}
Required scope
service:read
Errors
| Status | Code | Description |
|---|---|---|
401 | UNAUTHORIZED | Missing or invalid API key |
403 | FORBIDDEN | API key lacks service:read scope |
404 | NOT_FOUND | Service not found or belongs to another organization |
500 | INTERNAL_ERROR | Unexpected server error — retry with exponential backoff |
⌘I

