Skip to content
GET/account/meFree

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.

  • 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

FieldTypeDescription
credit_balancestring

Remaining credit balance in USD.

calls_madeinteger

Total billable calls made on this account.

emailstring

Account email.

statusstring

"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.

Related endpoints