Private Groups
Get Group
Private Groups
Get Group
GET
/
files
/
groups
/
{id}
curl --request GET \
--url https://api.pinata.cloud/v3/files/groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "01919976-955f-7d06-bd59-72e80743fb95",
"name": "Test Private Group",
"is_public": false,
"created_at": "2024-08-28T14:49:31.246596Z"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
curl --request GET \
--url https://api.pinata.cloud/v3/files/groups/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "01919976-955f-7d06-bd59-72e80743fb95",
"name": "Test Private Group",
"is_public": false,
"created_at": "2024-08-28T14:49:31.246596Z"
}
}