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.
| Method | Path | Cost | Description |
|---|---|---|---|
GET | /account/me | Free | Your credit balance, lifetime usage, and account details for the API key making the call. |
GET | /account/payments | Free | Every credit top-up on your account, newest first, with amount, credits added, and status. |
POST | /feedback | Free | File 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} | Free | Read one feedback report you filed: its current status and the team's response, if any. |
GET | /feedback | Free | Page through every feedback report your account has filed, newest first. |
Account Info
Your credit balance, lifetime usage, and account details for the API key making the call.
Payment History
Every credit top-up on your account, newest first, with amount, credits added, and status.
Send Feedback
File 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.
Feedback Status
Read one feedback report you filed: its current status and the team's response, if any.
List Feedback
Page through every feedback report your account has filed, newest first.
Trend Locations GET
Fetch the full set of locations X serves trends for, each with the WOEID to pass back to the Trends endpoint. Takes no parameters and returns the complete list. Cost: $0.0008 per call.
Account Info GET
Returns the account behind your API key: remaining credits, credits consumed, total requests served, and when the account was created. Use it to show a balance in your own dashboard or to alert before you run out of credits. This call is free and is not metered. Cost: Free per call.