GET
/account/meFreeAccount: 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.
- →This endpoint is free and never consumes credits.
Request
curl "https://api.twitterapis.com/account/me" \
-H "Authorization: Bearer $TWITTERAPIS_KEY"Parameters
This endpoint takes no parameters. Authenticate with your bearer token and call it directly.
Response
| Field | Type | Description |
|---|---|---|
credit_balance | string | Remaining credit balance in USD. |
calls_made | integer | Total billable calls made on this account. |
email | string | Account email. |
status | string | "success" on a normal response. |
Example response
{
"credit_balance": "0.9420",
"calls_made": 116,
"email": "dev@example.com",
"status": "success"
}Pricing for this endpoint
account/me is a free metadata endpoint and never consumes credits. Every billable read endpoint is $0.0008 per call (~20 tweets), or $0.04 per 1,000 tweets.