Bounties

List Public Submissions

Lists a bounty's publicly visible work — submitted, approved, and denied submissions in the reduced public shape. Authentication is optional; a bounty that is not publicly visible returns 404.

get/bounties/{bounty_id}/submissions

Path parameters

bounty_idstring required

The bounty whose public submissions to list (bnty_ tag).

Query parameters

status'submitted' | 'approved' | 'denied'

Filter by lifecycle state.

created_afterstring

Only submissions created after this ISO 8601 timestamp.

created_beforestring

Only submissions created before this ISO 8601 timestamp.

order'created_at' | 'updated_at'

Sort field.

direction'asc' | 'desc'

Sort direction.

firstinteger

Number of results to return from the start of the range.

afterstring

Return results after this cursor. Use page_info.end_cursor from the previous response to fetch the next page.

lastinteger

Number of results to return from the end of the range.

beforestring

Return results before this cursor. Use page_info.start_cursor from the previous response to fetch the previous page.

Response

public bounty submissions listed

Example response

{
  "data": [
    {
      "bounty_id": "bnty_xxxxxxxxxxxxxx",
      "claimed_at": "2026-01-01T12:00:00.000Z",
      "created_at": "2026-01-01T12:00:00.000Z",
      "denial_reason": "The wheels were never shown in the finished clip.",
      "id": "btys_xxxxxxxxxxxxxx",
      "latest_proof_livestream_feed": {
        "ended_at": "2026-01-01T12:00:00.000Z",
        "id": "lfeed_1",
        "recording_status": "completed",
        "recording_url": "https://whop-assets-example.s3.amazonaws.com/uploads/video/2026-01-01/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
        "started_at": "2026-01-01T12:00:00.000Z",
        "thumbnail_url": "https://img.whop.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxx_xxxxxxxxxxxxx/resize:fit/width:1000/height:500/plain/https://cdn.whop.com/livestreams/paint-correction-proof-cover.jpg",
        "title": "Untitled Livestream"
      },
      "resolved_at": "2026-01-01T12:00:00.000Z",
      "status": "approved",
      "submitted_at": "2026-01-01T12:00:00.000Z",
      "updated_at": "2026-01-01T12:00:00.000Z",
      "worker": {
        "id": "user_xxxxxxxxxxxxxx",
        "name": "Dana Whitfield",
        "profile_picture": {
          "url": "https://ui-avatars.com/api/"
        },
        "username": "danawhitfield"
      }
    }
  ],
  "page_info": {
    "start_cursor": "WyJjdXJzb3IiLDFd"
  }
}

Changes