Manage Assistants
Describe a file
Get the current status and metadata of a file uploaded to an assistant.
get/files/{assistant_name}/{assistant_file_id}
Path parameters
assistant_namestring required
The name of the assistant that contains the file.
assistant_file_idstring required
The identifier of the file to be described.
Query parameters
include_urlstring
Include the signed URL of the file in the response.
Headers
X-Pinecone-Api-Versionstring required
Required date-based version header
Response
Poll request successful.
Example response
{
"size": 1048576,
"metadata": {
"created_by": "Jane Doe",
"published": "2025-10-01T00:00:00.000Z",
"tags": [
"report",
"Q4",
"analytics"
]
},
"created_on": "2025-10-01T12:30:00.000Z",
"updated_on": "2025-10-01T12:45:00.000Z",
"signed_url": "https://storage.googleapis.com/bucket/file.pdf?..."
}