v8

OpenAPI 3.1.02026-08-033623795.0 MB
Bounties

List Bounties

Lists bounties visible to the credential — for an account API key, the account's bounties including scheduled drafts; for a user token, the bounties the user can see and work.

get/bounties

Query parameters

account_idstring

Scope the list to this account (biz_ tag). Requires read access to the account; account API keys may pass their own account or a connected account.

user_idstring

List the bounties this user participated in (user_ tag). Must be the authenticated user.

status'scheduled' | 'open' | 'closed' | 'completed' | 'canceled'

Filter by lifecycle state.

querystring

Substring match on the bounty title or ID.

created_afterstring

Only bounties created after this ISO 8601 timestamp.

created_beforestring

Only bounties created before this ISO 8601 timestamp.

order'created_at' | 'gross_paid_out_amount'

Sort field.

direction'asc' | 'desc'

Sort direction.

firstinteger

Number of bounties to return from the start of the window.

afterstring

Cursor to paginate forwards from.

lastinteger

Number of bounties to return from the end of the window.

beforestring

Cursor to paginate backwards from.

Response

bounties listed

Example response

{
  "data": [
    {
      "accepted_deliverable_types": [
        "content_url"
      ],
      "business_goal_type": "clipping",
      "scheduled_frequency": "once",
      "status": "scheduled"
    }
  ]
}