# Retrieve a group
Retrieve a single event group by slug. Scoped to your organization.

GET /groups/:slug

## Path Parameters
- slug (string, required): The group slug

## Authorization
read:groups

## Request Examples

### curl
```curl
curl -H "Authorization: Bearer INTERVALS_PARTNER_API_KEY" \
  https://api.intervals.run/groups/friday-night-lights
```

### JavaScript
```javascript
const slug = "friday-night-lights";
const res = await fetch(
  `https://api.intervals.run/groups/${slug}`,
  {
  headers: { Authorization: "Bearer INTERVALS_PARTNER_API_KEY" },
  }
);
const { data } = await res.json();
```

## Responses

### 200 (200)
```json
{
  "data": {
    "_id": "g14abc789def012",
    "organizationId": "k57abc123def456",
    "name": "Friday Night Lights",
    "slug": "friday-night-lights",
    "description": "Our weekly Friday evening track workouts.",
    "status": "active"
  }
}
```

### 404 (404)
```json
{
  "error": {
    "code": "NOT_FOUND",
    "message": "Group not found"
  }
}
```