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

# Get Service

> Retrieve a specific service by ID with optional related data.

## Path Parameters

<ParamField path="id" type="integer" required>
  The unique identifier of the service
</ParamField>

## Query Parameters

<ParamField query="include" type="string">
  Include related data (comma-separated: category, agents, locations)
</ParamField>

## Example Requests

### Basic Request

```bash theme={null}
GET /wp-json/latepoint-api/v1/services/1
X-API-Key: YOUR_API_KEY
```

### Include Related Data

```bash theme={null}
GET /wp-json/latepoint-api/v1/services/1?include=category,agents
X-API-Key: YOUR_API_KEY
```

## Response Example

```json theme={null}
{
  "success": true,
  "data": {
    "id": "1",
    "name": "Service Name",
    "short_description": "Brief description",
    "description": "Detailed description",
    "duration": "60",
    "price_min": "100.0000",
    "price_max": "299.0000",
    "charge_amount": "100.0000",
    "deposit_amount": "0.0000",
    "capacity_min": "1",
    "capacity_max": "1",
    "order_number": "0",
    "selection_image_id": "0",
    "status": "active",
    "visibility": "visible",
    "category_id": "1",
    "created_at": "2024-01-01 10:00:00",
    "updated_at": "2024-01-15 14:30:00",
    "category": {
      "id": 1,
      "name": "Category Name"
    },
    "agents": [
      {
        "id": 1,
        "first_name": "John",
        "last_name": "Doe"
      }
    ]
  }
}
```
