Skip to main content
GET
/
v1
/
me
curl https://api.getmatter.com/public/v1/me \
  -H "Authorization: Bearer mat_your_token_here"
{
  "object": "account",
  "id": "act_k8x2m",
  "name": "Jane Smith",
  "email": "jane@example.com",
  "rate_limit": {
    "read": 120,
    "write": 30,
    "save": 10,
    "search": 30,
    "markdown": 20,
    "burst": 5
  },
  "created_at": "2024-06-15T10:30:00Z"
}

Response

object
string
required
Always "account".
id
string
required
The account ID. Example: act_k8x2m.
name
string
required
The user’s display name.
email
string
required
The user’s email address.
rate_limit
object
required
Rate limit quotas (requests per minute unless noted).
created_at
string
required
ISO 8601 timestamp of account creation.
curl https://api.getmatter.com/public/v1/me \
  -H "Authorization: Bearer mat_your_token_here"
{
  "object": "account",
  "id": "act_k8x2m",
  "name": "Jane Smith",
  "email": "jane@example.com",
  "rate_limit": {
    "read": 120,
    "write": 30,
    "save": 10,
    "search": 30,
    "markdown": 20,
    "burst": 5
  },
  "created_at": "2024-06-15T10:30:00Z"
}