TwitterAPIs Docs
API ReferenceAccount

Account API | Balance, Payments and Feedback

Account: Your API account: credit balance, usage totals, payment history, and product feedback filed from the tool you are using. Served from the API root (https://api.twitterapis.com/account/* and /feedback), not under /twitter, because billing owns their authentication. Free.

Your API account: credit balance, usage totals, payment history, and product feedback filed from the tool you are using. Served from the API root (https://api.twitterapis.com/account/* and /feedback), not under /twitter, because billing owns their authentication. Free.

A typical integration calls /account/me once at startup to confirm the key is live and read the remaining credit balance, then again periodically to surface usage in an internal dashboard. /account/payments is the one to call when a customer asks whether a top-up went through: it lists every credit purchase, newest first, with status, so you do not need to cross-reference a separate billing system. The three /feedback routes are where an agent administers its own product feedback: POST /feedback writes a report when a call failed, a capability was missing, or the user asked it to, after the user has reviewed the draft; GET /feedback reads every report the account has filed, newest first, paginated and filterable by status or type; and GET /feedback/{id} reads one report by id once you already have it in hand. All five are free, unlike every other endpoint on this site, because checking what you have spent, or telling us what broke, should never itself cost credits.

This category has 5 endpoints. Each is a pay-per-call REST endpoint with bearer auth, JSON in and out.

MethodPathCostDescription
GET/account/meFreeYour credit balance, lifetime usage, and account details for the API key making the call.
GET/account/paymentsFreeEvery credit top-up on your account, newest first, with amount, credits added, and status.
POST/feedbackFreeFile a bug, idea or missing-capability report from the tool you are using, typically drafted by your AI agent and sent after you review it.
GET/feedback/{id}FreeRead one feedback report you filed: its current status and the team's response, if any.
GET/feedbackFreePage through every feedback report your account has filed, newest first.