GET
/api/public/v1/gallery

List gallery photos

List gallery photos for a location. Photo upload is dashboard-only.

Query Parameters

NameTypeRequiredDescription
locationIdstring
Required
Location to query.
GETExample request
curl
curl -X GET "https://www.pxb.app/api/public/v1/gallery" \
  -H "Authorization: Bearer your_access_token"
200Example response
json
{
  "message": "Gallery photos retrieved successfully!",
  "content": {
    "photos": [
      {
        "id": "photo_1",
        "path": "location-products/..."
      }
    ]
  }
}