Skip to content
Navigation
View as Markdown

driveItems.get

Read a drive item with its drive, children, visible ancestors, and shares.

GET /api/v1/drive-items/{itemId}

Input

Field Type In Description
itemId string path

Output

Field Type Description
item DriveItem

Examples

curl

curl "https://app.thinkbench.com/api/v1/drive-items/<itemId>" \
  -H "x-api-key: $THINKBENCH_API_KEY"

TypeScript SDK

const result = await tb.driveItems.get({ itemId: "<itemId>" });

CLI

thinkbench drive-items get --item-id "<itemId>"

MCP

{
  "name": "drive_items_get",
  "arguments": {
    "itemId": "<itemId>"
  }
}