Get share link details
curl --request GET \
--url https://api.arg.ai/api/share/{shareId}/infoimport requests
url = "https://api.arg.ai/api/share/{shareId}/info"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.arg.ai/api/share/{shareId}/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": "<string>"
}Sharing
Get share link details
Public endpoint. Returns what a share link points at, without the contents.
GET
/
api
/
share
/
{shareId}
/
info
Get share link details
curl --request GET \
--url https://api.arg.ai/api/share/{shareId}/infoimport requests
url = "https://api.arg.ai/api/share/{shareId}/info"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.arg.ai/api/share/{shareId}/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"detail": "<string>"
}Path Parameters
Response
Successful response
The response is of type object.