Get file metadata ​
get /v1/compliance/apps/chats/files/{claude_file_id}
Retrieves metadata for a file referenced in chat messages, without downloading the file content. Use the sibling /content endpoint to download the bytes.
Path Parameters ​
claude_file_id: stringThe file ID (tagged ID, e.g., claude_file_abc123)
Header Parameters ​
"x-api-key": optional string
Returns ​
id: stringFile ID
created_at: stringFile creation timestamp
filename: stringDisplay name of the file, if set
md5: stringLowercase hex MD5 of the file's preferred downloadable variant, as recorded at upload time. Null when no stored hash is available. The sibling
/contentendpoint also sets aContent-MD5header (base64 per RFC 1864) computed over the exact served bytes; when the two disagree, the header is authoritative.message_ids: array of stringChat message IDs this file is attached to. A file can be referenced by multiple messages.
mime_type: stringMIME type of the file's preferred downloadable variant (e.g. 'application/pdf'). May be null for files with no downloadable content (e.g. code-interpreter outputs).
size_bytes: numberSize in bytes of the file's preferred downloadable variant, if known
Example ​
http
curl https://api.anthropic.com/v1/compliance/apps/chats/files/$CLAUDE_FILE_ID \
-H "Authorization: Bearer $ANTHROPIC_COMPLIANCE_API_KEY"Response ​
json
{
"id": "claude_file_xyz789",
"filename": "quarterly_report.pdf",
"mime_type": "application/pdf",
"size_bytes": 1048576,
"md5": "5d41402abc4b2a76b9719d911017c592",
"created_at": "2024-01-15T10:30:00Z",
"message_ids": [
"claude_chat_msg_abc123"
]
}