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

# Star Entries

> Mark entries as starred/favorites

## Overview

Marks one or more file entries as starred (favorites) for quick access.

## Request Body

<ParamField body="entryIds" type="array" required>
  Array of entry IDs to star
</ParamField>

## Response

<ResponseField name="tag" type="object">
  The "starred" tag object
</ResponseField>

<ResponseField name="status" type="string">
  Request status (`success`)
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://app.drime.cloud/api/v1/file-entries/star \
    -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
    -H "Content-Type: application/json" \
    -d '{
      "entryIds": [123456, 789012]
    }'
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch('https://app.drime.cloud/api/v1/file-entries/star', {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      entryIds: [123456, 789012]
    })
  });

  const { status } = await response.json();
  console.log('Entries starred');
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      'https://app.drime.cloud/api/v1/file-entries/star',
      headers={'Authorization': 'Bearer YOUR_ACCESS_TOKEN'},
      json={'entryIds': [123456, 789012]}
  )

  print('Entries starred')
  ```
</RequestExample>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "status": "success",
    "tag": {
      "id": 1,
      "name": "starred"
    }
  }
  ```
</ResponseExample>

<Tip>
  Use `starredOnly=true` in the [Get File Entries](/api-reference/files/get-file-entries) endpoint to retrieve all starred items.
</Tip>
