Billing & Usage

Get current account billing plan

GET https://api.smtpd.dev/api/v1/account/billing/plan/current

Path Parameters

Name
Type
Description

Authentication

string

Bearer {access_token}

{
  "plan_id": "dbef0751-42b7-424e-8d1f-4ad67c478a2d",
  "plan_name": "Free - Forever!",
  "price_usd_per_month": "0.00",
  "max_emails_per_month": 5000,
  "enforce_plan_limit": true,
  "extra_thousand_emails_cost": "",
  "max_sending_profiles": 1,
  "max_retention_days": 7,
  "feature_email_validation": false,
  "feature_basic_reporting": false,
  "feature_advance_reporting": false
}

Get account usage (Last 30 days)

GET https://api.smtpd.dev/api/v1/account/billing/usage

Path Parameters

Name
Type
Description

Authentication

string

Bearer {access_token}

Get available billing plans

GET https://api.smtpd.dev/api/v1/billing/plan

This endpoint returns all current billing plans for SMTPD, along with their limits and features

Get billing plan by ID

GET https://api.smtpd.dev/api/v1/billing/plan/:id

This endpoint returns a billing plan by ID

Last updated

Was this helpful?