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.
Get a signed URL for downloading/reading an uploaded file. Private files get 30-minute URLs, public files get 24-hour URLs.
| Field | Value |
|---|
| Name | create_upload_signed_url |
| Group | Uploads |
Playground
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"file_path": {
"type": "string",
"description": "File path (e.g., assets/image.png). Must be URL-encoded if it contains special characters or spaces."
}
},
"required": [
"project_reference",
"file_path"
],
"additionalProperties": false,
"description": "Input schema for the create_upload_signed_url tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
"type": "object",
"properties": {
"signed_url": {
"type": "string",
"description": "The signed url associated with this tool result."
},
"expires_at": {
"type": "string",
"description": "The expires at associated with this tool result."
}
},
"required": [
"signed_url",
"expires_at"
],
"additionalProperties": false,
"description": "Structured result returned by the create_upload_signed_url tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}