> ## Documentation Index
> Fetch the complete documentation index at: https://dronelist.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Service Details

> Retrieve full details and pricing tiers for a specific service by ID using the dronelist.io API

# Get Service Details

Returns the full details for a specific service, including its pricing tiers.

## Request

```bash theme={null}
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

```json theme={null}
{
  "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 |
