Get Event Photos

View as Markdown
## 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

hoststringOptional
sec-ch-uastringOptional
Sec-Fetch-DeststringOptional
Sec-Fetch-ModestringOptional
Sec-Fetch-SitestringOptional
sec-ch-ua-mobilestringOptional
sec-ch-ua-platformstringOptional

Query parameters

pageintegerOptional
limitintegerOptional

Response headers

Serverstring or null
Datestring or null
Transfer-Encodingstring or null
Connectionstring or null
Varystring or null
Access-Control-Allow-Originstring or null
Access-Control-Allow-Methodsstring or null
Access-Control-Allow-Headersstring or null
Strict-Transport-Securitystring or null
X-Content-Type-Optionsstring or null
X-Frame-Optionsstring or null
X-XSS-Protectionstring or null
Referrer-Policystring or null
X-Webcom-Cache-Statusstring or null
Content-Encodingstring or null

Response

Get Event Photos