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

# Get a Screen

> Retrieve a single screen by its ID.

## Get a Screen

Retrieve a single screen by its ID.

<ParamField path="org_token" type="string" required>
  Your organization token (e.g., `Org_4KmTqZnWpLx`).
</ParamField>

<ParamField path="screen_id" type="string" required>
  The unique identifier of the screen to retrieve.
</ParamField>

### Response

Returns the Screen object with all fields populated.

### Example Request

```bash theme={null}
curl -X GET https://api.framen.com/vendor/Org_4KmTqZnWpLx/screens/Scr_xYz789
```

### Example Response

```json theme={null}
{
  "screen_id": "Scr_xYz789",
  "title": "Lobby Display A",
  "venue_type_id": "205",
  "location_id": "Loc_f9FxuWDTfzy",
  "width": 1920,
  "height": 1080,
  "loop_duration": 60,
  "archived": false,
  "available_for_ads": true,
  "amount": 1,
  "imps_weekly": 5000
}
```
