## Get a file download URL `$ lightfield file url` **get** `/v1/files/{id}/url` Returns a temporary download URL for the file. Only available for files in `COMPLETED` status. **[Required scope](/using-the-api/scopes/):** `files:read` **[Rate limit category](/using-the-api/rate-limits/):** Read ### Parameters - `--id: string` Unique identifier of the file to download. ### Returns - `file_url_response: object { expiresAt, url }` - `expiresAt: string` When the download URL expires. - `url: string` Temporary download URL for the file. ### Example ```cli lightfield file url \ --api-key 'My API Key' \ --id id ``` #### Response ```json { "expiresAt": "expiresAt", "url": "url" } ```