Account
Get Current Account
Returns the authenticated user’s account information and API quota.
GET
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns the authenticated user’s account information and API quota.
curl https://api.getmatter.com/public/v1/me \
-H "Authorization: Bearer mat_your_token_here"
import requests
response = requests.get(
"https://api.getmatter.com/public/v1/me",
headers={"Authorization": f"Bearer {token}"}
)
account = response.json()
const response = await fetch("https://api.getmatter.com/public/v1/me", {
headers: { Authorization: `Bearer ${token}` }
});
const account = await response.json();
{
"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"
}
"account".act_k8x2m.curl https://api.getmatter.com/public/v1/me \
-H "Authorization: Bearer mat_your_token_here"
import requests
response = requests.get(
"https://api.getmatter.com/public/v1/me",
headers={"Authorization": f"Bearer {token}"}
)
account = response.json()
const response = await fetch("https://api.getmatter.com/public/v1/me", {
headers: { Authorization: `Bearer ${token}` }
});
const account = await response.json();
{
"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"
}
curl https://api.getmatter.com/public/v1/me \
-H "Authorization: Bearer mat_your_token_here"
import requests
response = requests.get(
"https://api.getmatter.com/public/v1/me",
headers={"Authorization": f"Bearer {token}"}
)
account = response.json()
const response = await fetch("https://api.getmatter.com/public/v1/me", {
headers: { Authorization: `Bearer ${token}` }
});
const account = await response.json();
{
"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"
}