Retrieve the public URL for a MinIO object
GET
Retrieve the public URL for a MinIO object
Path Parameters
Response
200
Public object URL retrieved successfully
Last modified on July 17, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
InteraOne is open source — star or contribute on GitHub.
curl --request GET \
--url http://localhost:3002/api/v1/storage/public-url/{objectKey}const options = {method: 'GET'};
fetch('http://localhost:3002/api/v1/storage/public-url/{objectKey}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/storage/public-url/{objectKey}"
response = requests.get(url)
print(response.text)Public object URL retrieved successfully
curl --request GET \
--url http://localhost:3002/api/v1/storage/public-url/{objectKey}const options = {method: 'GET'};
fetch('http://localhost:3002/api/v1/storage/public-url/{objectKey}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:3002/api/v1/storage/public-url/{objectKey}"
response = requests.get(url)
print(response.text)