TwitterAPIs Docs
API ReferenceAccount

Account: Me

Return the authenticated account's current state: remaining credit balance in USD, total calls made, and plan details. This call is free and does not consume credits. Cost: Free per call.

GET
/account/me

Authorization

bearerAuth
AuthorizationBearer <token>

Pass your API key as a bearer token on every request: Authorization: Bearer <API_KEY>.

In: header

Response Body

application/json

curl -X GET "https://example.com/account/me"
{  "credit_balance": "0.9420",  "calls_made": 116,  "email": "dev@example.com",  "status": "success"}