Skip to main content
GET
https://prod-api.raisedonors.com
/
api
/
Premium
/
list
List All Premiums
curl --request GET \
  --url https://prod-api.raisedonors.com/api/Premium/list \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "id": 123,
      "currency": "<string>",
      "name": "<string>",
      "nameShort": "<string>",
      "code": "<string>",
      "description": "<string>",
      "isActive": true,
      "price": 123,
      "formattedPrice": "<string>",
      "fairMarketValue": 123,
      "formattedFairMarketValue": "<string>",
      "inventory": 123,
      "keepActiveWhenHasNoInventory": true,
      "recurringPremiumId": 123,
      "recurringPremiumName": "<string>",
      "image": "<string>",
      "externalIdentifier": "<string>",
      "otherMinimumAmounts": [
        {
          "currency": "<string>",
          "value": 123
        }
      ]
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Query Parameters

Filter
string
Skip
integer<int32>
Take
integer<int32>
SortBy
enum<string>

Field to sort by (case-insensitive). Valid options: fmv, id, status

Available options:
fmv,
id,
status
Descending
boolean
IncludeDetails
boolean

Response

OK

items
object[]
total
integer<int32>
Last modified on June 5, 2026