Skip to main content
Get a signed URL for downloading/reading an uploaded file. Private files get 30-minute URLs, public files get 24-hour URLs.

Tool details

FieldValue
Namecreate_upload_signed_url
GroupUploads

Playground

Input schema

Input schema
{
  "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

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#"
}