Getting Started Guide
Welcome to Gallerease!
Manage and integrate image galleries with ease. Our platform simplifies gallery management for developers working on client websites. Follow these steps to get started.
01
Creating an Account
- Go to the sign-in page and choose Google or GitHub.
- Your account is created automatically the first time you sign in — there's no separate registration step.
02
Creating Sites and Galleries
- Log in and go to the Overview section.
- Click Create New Site and provide a site name and optional description.
- Select the site and click Add Gallery.
03
Adding and Configuring Images
- Open the gallery and click Upload Images.
- Drag-and-drop or select files from your computer.
- Configure image settings (titles, descriptions, tags).
04
Allowing Users to Add Images
- Select the gallery and click Generate Temporary Link.
- Set expiration and optional restrictions (max uploads, file types).
- Share the link with clients so they can upload directly.
05
Creating an API Key
- Go to Account Settings → API Keys.
- Click Generate New Key and give it a name (e.g.,
Client A Gallery). - Copy and securely store the key for API access.
06
Retrieving Image Data via REST API
Use the following endpoint to fetch gallery images:
GET https://gallerease.dev/api/{site_id}/galleries/{gallery_id}/images
Headers:
x-api-key: YOUR_API_KEYExample JSON response:
{
"images": [
{
"id": "12345",
"title": "Sunset",
"description": "A beautiful sunset.",
"url": "https://cdn.gallerease.dev/optimized/sunset.jpg"
}
]
}