Skip to main content

Services & Pricing

The Services API lets you retrieve your organization’s service offerings — useful for building quoting tools, public listings, or integration with CRM systems.

List services

Retrieve all services configured in your organization:
curl "https://api.dronelist.io/v1/services" \
  -H "X-API-Key: dl_your_key_here"
The services endpoint returns all services without pagination. This may change in a future API version if service counts grow large.

Get service details

Retrieve a specific service by its ID:
curl "https://api.dronelist.io/v1/services/svc_abc123" \
  -H "X-API-Key: dl_your_key_here"

Common use cases

Pull service pricing into a quoting tool or spreadsheet to generate proposals automatically based on your current rates.
Display your service offerings and pricing on your company website, kept in sync with your dronelist.io configuration.
Feed service data into your CRM to help sales teams understand what your organization offers and at what price points.

Required scope

All service endpoints require the service:read scope on your API key.