# Account
# Retrieve Account
GET https://api.wolfeo.me/v1/account
Returns basic information about the authenticated account, including plan details and current usage limits.
# Example Request
curl --request GET "https://api.wolfeo.me/v1/account" \
--header "Authorization: Bearer YOUR_API_KEY"
# Sample Return
{
"success": true,
"data": {
"name": "John Doe",
"email": "john@example.com",
"plan": "pro",
"on_trial": false,
"limits": {
"contacts": 10000,
"campaigns": 50,
"emails": 100000,
"funnels": 20,
"monthly_recipients": 50000
}
}
}
TIP
limits values represent the remaining quota for the current billing period. A value of null means unlimited.
# What's next
Contacts โ