Skip to main content
Retrieve your current credit balance, subscription plan, and next reset date.

Overview

The Credit Balance endpoint returns how many credits you have remaining in the current billing period, along with your plan tier and the date when credits next reset. Use this to monitor consumption and plan API usage.

Authentication

Requires a valid API key. No special permission scope is needed beyond a valid key.

Key Features

  • Real-Time Balance: Current credit count updated after every API call
  • Reset Date: Know exactly when credits refresh
  • Plan Awareness: Confirm which plan tier is active
  • No Credit Cost: This endpoint is free to use
curl -X GET "https://api.trigify.io/v1/credits/balance" \
  -H "x-api-key: YOUR_API_KEY"

Example Response

{
  "success": true,
  "data": {
    "balance": 4250,
    "subscription_plan": "PRO",
    "next_reset": "2026-04-01T00:00:00.000Z"
  }
}

Response Fields

FieldTypeDescription
balanceintegerNumber of credits remaining in the current billing period
subscription_planstringActive plan: FREE, PRO, ENTERPRISE, or CUSTOM
next_resetstringISO 8601 date when the credit balance resets

Credit Usage

This endpoint is free and does not consume credits.