curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/storage/files/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"tags": [
"<string>"
],
"path_prefix": "<string>",
"content_type": "<string>",
"min_size": 123,
"max_size": 123,
"uploaded_by": "<string>"
}
'[
{
"id": "<string>",
"file_name": "<string>",
"file_path": "<string>",
"content_type": "<string>",
"file_size_bytes": 123,
"checksum": "<string>",
"uploaded_by": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"last_accessed_at": "<string>",
"access_count": 123,
"provider": "<string>",
"tags": [
"<string>"
],
"custom_metadata": {}
}
]Advanced file search with multiple filters.
curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/storage/files/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"tags": [
"<string>"
],
"path_prefix": "<string>",
"content_type": "<string>",
"min_size": 123,
"max_size": 123,
"uploaded_by": "<string>"
}
'[
{
"id": "<string>",
"file_name": "<string>",
"file_path": "<string>",
"content_type": "<string>",
"file_size_bytes": 123,
"checksum": "<string>",
"uploaded_by": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"last_accessed_at": "<string>",
"access_count": 123,
"provider": "<string>",
"tags": [
"<string>"
],
"custom_metadata": {}
}
]Enter your Kubiya API token (format: Bearer
Successful Response
Was this page helpful?