> ## 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.

# Services & Pricing

> Retrieve your organization's service catalog and pricing details using the Services API

# 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:

```bash theme={null}
curl "https://api.dronelist.io/v1/services" \
  -H "X-API-Key: dl_your_key_here"
```

<Note>
  The services endpoint returns all services without pagination. This may change in a future API version if service counts grow large.
</Note>

## Get service details

Retrieve a specific service by its ID:

```bash theme={null}
curl "https://api.dronelist.io/v1/services/svc_abc123" \
  -H "X-API-Key: dl_your_key_here"
```

## Common use cases

<AccordionGroup>
  <Accordion title="Automated quoting">
    Pull service pricing into a quoting tool or spreadsheet to generate proposals automatically based on your current rates.
  </Accordion>

  <Accordion title="Website integration">
    Display your service offerings and pricing on your company website, kept in sync with your dronelist.io configuration.
  </Accordion>

  <Accordion title="CRM enrichment">
    Feed service data into your CRM to help sales teams understand what your organization offers and at what price points.
  </Accordion>
</AccordionGroup>

## Required scope

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