RedditAPIRedditAPIs
Account

Get Account Info, Balance, and Usage Summary

Get your account info, remaining credit balance, total credits used, and request count. Free, no per-call cost — use it for dashboards and billing checks.

GET/account/meFree

Get your account info, current balance, and usage summary. Free — does not consume credits.

Rate-limited to 30 requests/minute per API key.

Success Response

{
  "email": "alex@acme.dev",
  "name": "Alex Morgan",
  "credits_remaining": 8.96,
  "credits_used": 13.832,
  "total_requests": 12251,
  "created_at": "2026-02-06T10:14:22.318401+00:00"
}

Field Reference

FieldDescription
emailEmail on the account.
nameDisplay name.
credits_remainingCurrent balance in USD (e.g. 8.96 = $8.96 left).
credits_usedLifetime credits spent in USD.
total_requestsLifetime number of API calls made.
created_atWhen the account was created.

Example

curl -H "Authorization: Bearer $TOKEN" \
  "https://api.redditapis.com/account/me"
const response = await fetch("https://api.redditapis.com/account/me", {
  headers: { Authorization: "Bearer TOKEN" },
});
const data = await response.json();
import requests

response = requests.get(
    "https://api.redditapis.com/account/me",
    headers={"Authorization": "Bearer TOKEN"},
)
data = response.json()

Errors

StatusMeaning
401Missing Bearer token
403Invalid Bearer token
429Rate limit exceeded (>30 req/min)
500Unexpected server error

On this page