---
title: Star
summary: A star allows users to mark services of interest.
url: https://www.fastly.com/documentation/reference/api/account/star
---

A star allows users to mark services of interest.

## Data model

| Field | Type | Description |
|-------|------|-------------|
| `relationships.service.id` | string | Alphanumeric string identifying the service. |
| `relationships.user.id` | string | Alphanumeric string identifying the user. |
| `type` | string | Resource type. |
| `created_at` | string | Date and time in ISO 8601 format. (Read-only) |
| `deleted_at` | string | Date and time in ISO 8601 format. (Read-only) |
| `id` | string | Alphanumeric string identifying a star. (Read-only) |
| `updated_at` | string | Date and time in ISO 8601 format. (Read-only) |

## API endpoints

### Get a star

**GET** `/stars/{star_id}`

Show star.

**Parameters:**

| Name | Type | In | Required | Description |
|------|------|----|---------|--------------|
| `star_id` | string | path | Yes | Alphanumeric string identifying a star. |

### Delete a star

**DELETE** `/stars/{star_id}`

Delete star.

**Parameters:**

| Name | Type | In | Required | Description |
|------|------|----|---------|--------------|
| `star_id` | string | path | Yes | Alphanumeric string identifying a star. |

### List stars

**GET** `/stars`

List stars.

### Create a star

**POST** `/stars`

Create star.
