skills/download-file-content/SKILL.md
# Download File Content Download the actual binary content of a previously uploaded file. ## API Details - **API**: Anthropic Files API - **Method**: GET - **Path**: `/files/{file_id}/content` - **Operation ID**: `downloadFileContent` - **OpenAPI**: [anthropic-files-api-openapi.yml](../../openapi/anthropic-files-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-files-api/1.0.0/files/{file_id}/content` ## Required Headers - `anthropic-version: 2023-06-01` -
npx skillsauth add naftiko/anthropic-sandbox skills/download-file-contentInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Download the actual binary content of a previously uploaded file.
/files/{file_id}/contentdownloadFileContentMock server URL: http://localhost:8080/rest/anthropic-files-api/1.0.0/files/{file_id}/content
anthropic-version: 2023-06-01anthropic-beta: files-api-2025-04-14x-api-key: {api-key}| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| file_id | string | Yes | Unique identifier of the file to download |
curl -X GET "http://localhost:8080/rest/anthropic-files-api/1.0.0/files/file_011CNha8iCJcU1wXNR6q4V8w/content" \
-H "anthropic-version: 2023-06-01" \
-H "anthropic-beta: files-api-2025-04-14" \
-H "x-api-key: your-api-key" \
--output downloaded-file.pdf
Returns binary content (application/octet-stream) of the file. The downloadable field in the file metadata must be true for this operation to succeed.
When the user asks to download or retrieve the content of a file, use this operation by making a GET request to /files/{file_id}/content. Only files with downloadable: true can be downloaded. Save the binary response to a local file.
development
# Update Workspace Update the name or display color of an existing workspace. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/workspaces/{workspace_id}` - **Operation ID**: `updateWorkspace` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces/{workspace_id}` ## Required Headers - `anthro
development
# Update Workspace Member Update the workspace role of a specific member within a workspace. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/workspaces/{workspace_id}/members/{user_id}` - **Operation ID**: `updateWorkspaceMember` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/workspaces/{workspa
development
# Update Organization Member Update the role or other attributes of a specific user within the organization. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/users/{user_id}` - **Operation ID**: `updateOrganizationMember` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/users/{user_id}` ## Require
development
# Update API Key Update the name or status of an existing API key. Can be used to activate or deactivate a key. ## API Details - **API**: Anthropic Administrative API - **Method**: POST - **Path**: `/organizations/api_keys/{api_key_id}` - **Operation ID**: `updateApiKey` - **OpenAPI**: [anthropic-admin-api-openapi.yml](../../openapi/anthropic-admin-api-openapi.yml) ## Sandbox Mock server URL: `http://localhost:8080/rest/anthropic-admin-api/1.0.0/organizations/api_keys/{api_key_id}` ## Requ