Questions · Updated 2026-09-23

Does AgentiSend have a free plan?

Yes. AgentiSend has a free plan. What that plan includes, and what the paid plans include, is on the pricing page. GET /billing/plan returns the plan on the account.

Yes. AgentiSend has a free plan. What it includes, and what the paid plans include, is on the pricing page. This page does not restate those figures. GET /billing/plan returns the plan on the account. GET /usage returns what the account has used. A send is POST /emails.

curl -sS -X GET https://api.agentisend.com/billing/plan \
  -H "Authorization: Bearer $AGENTISEND_API_KEY"
200
{
  "billing_configured": true,
  "billing_term": "month",
  "entitlements": "string",
  "plan_status": "none",
  "plans": [],
  "purchasable": [],
  "subscription": "string",
  "terms_on_sale": []
}
Response

When the day's allowance is spent, POST /emails is refused with daily_limit_reached. The catalogue message is "This account has sent its daily allowance of emails; sending resumes at 00:00 UTC." When the period's inclusion is spent, the code is plan_limit_reached and the message is "This account has used every email included in its plan for the current period." Both fixes are in the error catalogue.

Next