Skip to main content
GET
/
providers
/
{provider}
/
files
/
{file_id}
Get provider file
curl --request GET \
  --url https://api.veryfront.com/providers/{provider}/files/{file_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "path": "<string>",
  "mime_type": "<string>",
  "size": 123,
  "is_folder": true,
  "modified_at": "<string>",
  "thumbnail": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Path Parameters

provider
string
required

External storage provider identifier, such as onedrive, sharepoint, google_drive, or dropbox.

file_id
string
required

Provider-specific file or folder identifier.

Query Parameters

project_id
string<uuid>

Optional project ID for project-scoped provider credentials.

Response

File metadata

id
string
required

Provider-specific file or folder ID.

name
string
required

File or folder name.

path
string
required

Provider path for the file or folder.

mime_type
string
required

MIME type or folder for folders.

size
number
required

File size in bytes. Folders may report 0.

is_folder
boolean
required

Whether this item is a folder.

modified_at
string
required

Provider modified timestamp.

thumbnail
string

Optional provider thumbnail URL.