v6 documentation is incomplete, want to contribute?

Get Group Gallery Images

Returns a list of images for a Group gallery.

Requests made through this page are proxied through an intermediary server due to Cross-Origin Resource Sharing restrictions.

GET
/groups/{groupId}/galleries/{groupGalleryId}
auth<token>

Auth Token via Cookie

In: cookie

Path Parameters

groupIdstring

Must be a valid group ID.

groupGalleryIdstring

Must be a valid group gallery ID.

Query Parameters

n?integer

The number of objects to return.

Default60
Range1 <= value <= 100
offset?integer

A zero-based offset from the default object sorting from where search results start.

Range0 <= value
approved?boolean

If specified, only returns images that have been approved or not approved.

Response Body

application/json

application/json

application/json

curl -X GET "https://api.vrchat.cloud/api/1/groups/grp_00000000-0000-0000-0000-000000000000/galleries/ggal_00000000-0000-0000-0000-000000000000?n=60&offset=0&approved=true"
[
  {
    "id": "ggim_71a7ff59-112c-4e78-a990-c7cc650776e5",
    "groupId": "grp_71a7ff59-112c-4e78-a990-c7cc650776e5",
    "galleryId": "ggal_a03a4b55-4ca6-4490-9519-40ba6351a233",
    "fileId": "file_ce35d830-e20a-4df0-a6d4-5aaef4508044",
    "imageUrl": "https://api.vrchat.cloud/api/1/file/file_ce35d830-e20a-4df0-a6d4-5aaef4508044/1/file",
    "createdAt": "2019-08-24T14:15:22Z",
    "submittedByUserId": "usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469",
    "approved": true,
    "approvedByUserId": "usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469",
    "approvedAt": "2019-08-24T14:15:22Z"
  }
]

{
  "error": {
    "message": "\"Missing Credentials\"",
    "status_code": 401
  }
}

{
  "error": {
    "message": "Can't find groupǃ",
    "status_code": 404
  }
}