Account
Get the current account
GEThttps://api.temporam.com/v3/me
Returns information about the current user, including subscription, plan usage, and mailbox usage.
- 1curl https://api.temporam.com/v3/me \
- 2 -H "Authorization: Bearer YOUR_API_KEY"
- 1{
- 2 "data": {
- 3 "name": "Demo User",
- 4 "email": "[email protected]",
- 5 "plan": "plus",
- 6 "period_start": "2026-08-01T00:00:00+08:00",
- 7 "period_end": "2026-09-01T00:00:00+08:00",
- 8 "inbound": {
- 9 "limit": 10000,
- 10 "used": 125,
- 11 "remaining": 9875
- 12 },
- 13 "outbound": {
- 14 "limit": 1000,
- 15 "used": 20,
- 16 "remaining": 980
- 17 },
- 18 "mailboxes": {
- 19 "limit": 10,
- 20 "used": 3
- 21 }
- 22 }
- 23}
| Response field | Type | Description |
|---|---|---|
| data.name | string | User display name; may be empty |
| data.email | string | User email address |
| data.plan | string | Plan code: hobby, plus, or pro |
| data.period_start | string | Start of the current usage period |
| data.period_end | string | End of the current usage period |
| data.inbound.limit | integer | Inbound allowance for the period |
| data.inbound.used | integer | Inbound usage in the period |
| data.inbound.remaining | integer | Remaining inbound allowance |
| data.outbound.limit | integer | Outbound allowance for the period |
| data.outbound.used | integer | Outbound usage in the period |
| data.outbound.remaining | integer | Remaining outbound allowance |
| data.mailboxes.limit | integer | Maximum number of active mailboxes |
| data.mailboxes.used | integer | Number of active mailboxes |