Get scene metadata

Retrieve detailed metadata for a specific scene by its ID.

This endpoint returns:

  • Complete scene metadata (name, dates, pinned status)
  • All associated read-only sharing links
  • All shared slides presentation links
  • Collection assignment information

This endpoint only returns metadata. To get the actual scene content (drawings, shapes, etc.), use the content endpoint.

Use cases:

  • Displaying scene information in UI
  • Checking scene permissions and sharing status
  • Building scene detail views
  • Validating scene existence before operations
GET
/api/v1/scenes/{sceneId}
AuthorizationBearer <token>

The API will use the Authorization: Bearer <your-key> header for requests.

In: header

Path Parameters

sceneId*string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://api.excalidraw.com/api/v1/scenes/string"
{
  "metadata": {
    "workspace": "string",
    "name": "string",
    "created": "string",
    "updated": "string",
    "previewUrl": "string",
    "previewFilename": "string",
    "previewBackground": "string",
    "isDeleted": true,
    "creator": "string",
    "updater": "string",
    "sceneVersion": "string",
    "lastAcknowledgedVersion": -9007199254740991,
    "linkSharing": 0,
    "collection": "string",
    "updateCount": 0,
    "revisionCount": 0,
    "lastRevision": "string",
    "totalElements": 0,
    "deletedElements": 0,
    "pinned": true,
    "hasNonDeletedFrames": true,
    "isWelcomeScene": true,
    "id": "string"
  },
  "readOnlyLinks": [
    {
      "id": "string",
      "scene": "string",
      "workspace": "string",
      "created": "string",
      "updated": "string",
      "updatedBy": "string",
      "creator": "string",
      "preview": "string",
      "previewPath": "string",
      "type": "readonly",
      "status": "active",
      "name": "string",
      "data": {
        "showTitle": true,
        "showMenu": true,
        "darkMode": true,
        "disableInteraction": true,
        "showDarkModeToggle": true,
        "showFrameOutlines": true,
        "x": 0,
        "y": 0,
        "width": 0,
        "height": 0
      }
    }
  ],
  "sharedSlidesLinks": [
    {
      "id": "string",
      "scene": "string",
      "workspace": "string",
      "created": "string",
      "updated": "string",
      "updatedBy": "string",
      "creator": "string",
      "preview": "string",
      "previewPath": "string",
      "isActive": true,
      "type": "slides",
      "data": {
        "name": "string",
        "showSlideTitle": true,
        "animateSlides": true,
        "disallowDownload": true,
        "autoPlaySlides": 100
      }
    }
  ]
}
{
  "statusCode": 401,
  "error": "Unauthorized",
  "message": "string"
}
{
  "statusCode": 403,
  "error": "Forbidden",
  "message": "string"
}
{
  "statusCode": 404,
  "error": "Not Found",
  "message": "string"
}