Skip to main content
GET
/
workforce
/
bounties
/
{id}
Retrieve Workforce Bounty
curl --request GET \
  --url https://api.whop.com/api/v1/workforce/bounties/{id} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.whop.com/api/v1/workforce/bounties/{id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.whop.com/api/v1/workforce/bounties/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.whop.com/api/v1/workforce/bounties/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.whop.com/api/v1/workforce/bounties/{id}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.whop.com/api/v1/workforce/bounties/{id}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.whop.com/api/v1/workforce/bounties/{id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "accepted_submissions_count": 123,
  "accepted_submissions_limit": 123,
  "allowed_country_codes": [
    "<string>"
  ],
  "budget_amount": 123,
  "business_goal_type": "clipping",
  "created_at": "<string>",
  "currency": "<string>",
  "description": "<string>",
  "experience_id": "<string>",
  "funding_account": {
    "id": "<string>",
    "title": "<string>"
  },
  "gross_paid_out_amount": 123,
  "gross_reward_amount": 123,
  "id": "<string>",
  "poster": {
    "id": "<string>",
    "name": "<string>",
    "profile_picture": {
      "url": "<string>"
    },
    "username": "<string>"
  },
  "scheduled_frequency": "once",
  "scheduled_publish_at": "<string>",
  "spots_remaining": 123,
  "status": "scheduled",
  "submissions_closed_at": "<string>",
  "title": "<string>",
  "unresolved_submissions_count": 123,
  "updated_at": "<string>"
}
{
"error": {
"message": "<string>",
"type": "<string>"
}
}

Authorizations

Authorization
string
header
required

A company API key, company scoped JWT, app API key, or user OAuth token. You must prepend your key/token with the word 'Bearer', which will look like Bearer ***************************

Headers

Api-Version-Date
string

Pins the request to a dated API version.

Example:

"2026-07-08-1"

Path Parameters

id
string
required

Bounty ID (bnty_ tag).

Response

workforce bounty retrieved

accepted_submissions_count
integer
required

Submissions accepted so far.

accepted_submissions_limit
integer
required

Number of submissions that can be accepted (winner slots).

allowed_country_codes
string[]
required

Countries whose residents can work the bounty, as ISO 3166 alpha-2 codes. Empty means worldwide.

budget_amount
number
required

Total gross budget committed to the bounty: gross_reward_amount times accepted_submissions_limit.

business_goal_type
enum<string> | null
required

What the poster wants the work to achieve.

Available options:
clipping,
post_engagement,
owned_account_growth,
ugc_content,
local_activation,
other,
null
Example:

"clipping"

created_at
string
required

When the bounty was created, as an ISO 8601 timestamp.

currency
string
required

Currency for all amounts on the bounty, as a lowercase ISO 4217 code.

description
string
required

Full task instructions shown to workers.

experience_id
string | null
required

Experience the bounty is hosted in, prefixed exp_. Null for platform-wide bounties; may belong to a different account than the funder.

funding_account
object | null
required

The account whose balance funds the bounty pool, or null when a user funds it personally. May differ from the account hosting experience_id.

gross_paid_out_amount
number
required

Gross amount paid out from the bounty pool across accepted submissions — worker payouts, platform fees, and affiliate shares together. Tips and reviewer rewards are excluded.

gross_reward_amount
number
required

Gross bounty-pool amount allocated per accepted submission, in whole currency units.

id
string
required

Bounty ID, prefixed bnty_.

poster
object
required

The user who posted the bounty.

scheduled_frequency
enum<string> | null
required

How often the schedule creates a new bounty. Each occurrence is a separate bounty; the original is not republished.

Available options:
once,
hourly,
daily,
weekly,
monthly,
null
Example:

"once"

scheduled_publish_at
string | null
required

When a scheduled bounty will publish, as an ISO 8601 timestamp. Null once published, for bounties that were never scheduled, and for terminally failed drafts parked for manual rescheduling.

spots_remaining
integer
required

Unfilled winner capacity: accepted_submissions_limit minus accepted_submissions_count, clamped to zero. Not a signal that the bounty currently accepts new claims.

status
enum<string>
required

Lifecycle state. scheduled bounties are unpublished drafts, visible to their poster and the account's authorized managers; open bounties accept new submissions; closed bounties are live but no longer accept new submissions; completed bounties paid out every winner slot; canceled bounties ended before filling their slots.

Available options:
scheduled,
open,
closed,
completed,
canceled
Example:

"scheduled"

submissions_closed_at
string | null
required

When new submissions were explicitly stopped, as an ISO 8601 timestamp. Null when submissions were never explicitly stopped — including closed or completed bounties that simply filled every winner slot.

title
string
required

Short name of the task shown to workers.

unresolved_submissions_count
integer
required

Submissions still awaiting an outcome: in progress or pending review.

updated_at
string
required

When the bounty was last updated, as an ISO 8601 timestamp.