Account

Get the current account

GEThttps://api.temporam.com/v3/me

Returns information about the current user, including subscription, plan usage, and mailbox usage.

  1. 1curl https://api.temporam.com/v3/me \
  2. 2 -H "Authorization: Bearer YOUR_API_KEY"
  1. 1{
  2. 2 "data": {
  3. 3 "name": "Demo User",
  4. 4 "email": "[email protected]",
  5. 5 "plan": "plus",
  6. 6 "period_start": "2026-08-01T00:00:00+08:00",
  7. 7 "period_end": "2026-09-01T00:00:00+08:00",
  8. 8 "inbound": {
  9. 9 "limit": 10000,
  10. 10 "used": 125,
  11. 11 "remaining": 9875
  12. 12 },
  13. 13 "outbound": {
  14. 14 "limit": 1000,
  15. 15 "used": 20,
  16. 16 "remaining": 980
  17. 17 },
  18. 18 "mailboxes": {
  19. 19 "limit": 10,
  20. 20 "used": 3
  21. 21 }
  22. 22 }
  23. 23}
Response fieldTypeDescription
data.namestringUser display name; may be empty
data.emailstringUser email address
data.planstringPlan code: hobby, plus, or pro
data.period_startstringStart of the current usage period
data.period_endstringEnd of the current usage period
data.inbound.limitintegerInbound allowance for the period
data.inbound.usedintegerInbound usage in the period
data.inbound.remainingintegerRemaining inbound allowance
data.outbound.limitintegerOutbound allowance for the period
data.outbound.usedintegerOutbound usage in the period
data.outbound.remainingintegerRemaining outbound allowance
data.mailboxes.limitintegerMaximum number of active mailboxes
data.mailboxes.usedintegerNumber of active mailboxes