Skip to main content
GET
/
vendor
/
{org_token}
/
screens
/
{screen_id}
Get a Screen
curl --request GET \
  --url https://api.framen.com/vendor/{org_token}/screens/{screen_id}

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.
org_token
string
required
Your organization token (e.g., Org_4KmTqZnWpLx).
screen_id
string
required
The unique identifier of the screen to retrieve.

Response

Returns the Screen object with all fields populated.

Example Request

curl -X GET https://api.framen.com/vendor/Org_4KmTqZnWpLx/screens/Scr_xYz789

Example Response

{
  "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
}
Last modified on April 17, 2026