Get Event Photos
## Get Event Photos
Retrieves all photos from a specific event with pagination.
### Endpoint
`GET https://photos.conventionphotography.com/event/ASDAR26`
### Description
Fetches a paginated list of all photos from a specific convention event. This is the main endpoint for browsing an event's complete photo gallery.
### Path Parameters
- **eventCode**: `ASDAR26` - The unique event identifier/code
### Query Parameters
- **page**: `1` - Page number for pagination (starts at 1)
- **limit**: `50` - Number of photos to return per page (max: 100)
### Headers
- **Accept**: `*/*` - Accepts any response format
- **Sec-Fetch-Mode**: `cors` - CORS-enabled request
- **Sec-Fetch-Site**: `same-origin` - Same-origin request
### Response Format
Returns JSON object with:
```json
{
"photos": [
{
"id": "photo_id",
"number": "1234",
"thumbnail": "url",
"fullSize": "url",
"metadata": {}
}
],
"totalCount": 500,
"currentPage": 1,
"totalPages": 10
}
```
### Pagination
- Default: 50 photos per page
- Use `page` parameter to navigate
- Response includes pagination metadata
### Use Cases
- Display event photo gallery
- Implement photo browsing interface
- Search photos within event
- Generate photo listings
### Authentication
No authentication required for public event access.
Headers
host
sec-ch-ua
Sec-Fetch-Dest
Sec-Fetch-Mode
Sec-Fetch-Site
sec-ch-ua-mobile
sec-ch-ua-platform
Query parameters
page
limit
Response headers
Server
Date
Transfer-Encoding
Connection
Vary
Access-Control-Allow-Origin
Access-Control-Allow-Methods
Access-Control-Allow-Headers
Strict-Transport-Security
X-Content-Type-Options
X-Frame-Options
X-XSS-Protection
Referrer-Policy
X-Webcom-Cache-Status
Content-Encoding
Response
Get Event Photos