---
title: "List fan content"
method: GET
path: "/fan-content"
tags: ["Feedback"]
---

# List fan content

`GET /fan-content`

Returns fan comments, photos and videos submitted on your events, newest first. Approved items only by default; pass is_approved=false to read the pending moderation queue. Submitter email addresses are never included. Each kind of submission has its own id sequence, so an id is only unique within a type - key on the pair.

## Query parameters

- `type` 'comment' | 'photo' | 'video'
- `event_id` string
- `subdomain` string
- `event_date` string, date
- `is_approved` boolean
- `page` integer
- `per_page` integer

## Response `200`

List of fan content

- object
  - `data` FanContent[]
    - `id` string — Encoded submission ID, unique only within a given type
    - `type` 'comment' | 'photo' | 'video'
    - `event_id` string — Encoded event ID
    - `event_name` string
    - `event_part_id` string, nullable — Encoded agenda part ID, when the submission targets one
    - `event_date` string, date, nullable
    - `submitted_by` string — Display name of the submitter
    - `is_guest_submission` boolean — True when submitted without an account
    - `is_approved` boolean
    - `comment` string — Comment text (type=comment)
    - `photo_url` string — Image URL (type=photo)
    - `youtube_url` string — Watch URL (type=video)
    - `embed_url` string — Embeddable URL (type=video)
    - `created_at` string, date-time
  - `meta` Pagination
    - `current_page` integer — Current page number
    - `from` integer, nullable — First item number on this page
    - `last_page` integer — Last page number
    - `per_page` integer — Items per page
    - `to` integer, nullable — Last item number on this page
    - `total` integer — Total number of items
    - `path` string, uri — Base URL for pagination

## Other responses

- `401` — Missing or invalid API key
- `422` — Validation failed

---

[API](https://skmtc.net/eventschedule/apis/event-schedule-api.md) · [All operations](https://skmtc.net/eventschedule/apis/event-schedule-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/eventschedule/event-schedule-api/versions/fc24d7d227c4/schema)
