Returns a temporary download URL for the file. Only available for files in COMPLETED status.
Required scope: files:read
Rate limit category: Read
Get a file download URL
from lightfield import Lightfield
client = Lightfield(
api_key="My API Key",
)
file_url_response = client.file.url(
"id",
)
print(file_url_response.expires_at){
"expiresAt": "expiresAt",
"url": "url"
}Returns Examples
{
"expiresAt": "expiresAt",
"url": "url"
}