Niches & credits

List the valid niche categories for filtering, and check your own credit balance. Both are free.

Two free helper endpoints: the niche taxonomy for filtering creators, and your current credit balance. Neither costs a credit.

List niches

GET /api/v1/niches

Returns the valid niche categories and their filter values, for use as niche_category in creator search. Free.

curl -H "Authorization: Bearer ifsk_your_key" \
  "https://platform.influesque.com/api/v1/niches"
{
  "niches": [
    { "label": "Gaming", "value": "gaming" },
    { "label": "Adventure & Travel", "value": "adventure_travel" }
  ]
}

Use the value (not the label) when filtering creator search.

Check credits

GET /api/v1/credits

Returns your current credit balance and plan. Free.

curl -H "Authorization: Bearer ifsk_your_key" \
  "https://platform.influesque.com/api/v1/credits"
{ "plan": "user", "unlimited": false, "balance": 812, "allowance": 1000, "renewsAt": "2026-08-01T00:00:00Z" }
FieldTypeDescription
planstringYour plan (e.g. user, free_trial).
unlimitedbooleanTrue for internal accounts with no metering.
balanceinteger or nullCredits remaining this period. null when unlimited.
allowanceintegerCredits granted per period.
renewsAtstringWhen the allowance next resets (ISO 8601).