GET
/v1/meGet User Profile
Retrieve authenticated user's profile data including personal details, account status, and subscription informationThis endpoint returns the authenticated user's complete profile data in a single API call. Use it to verify authentication, retrieve user details, and check account status.
This is typically the first endpoint you'll call after authentication to confirm your credentials are working correctly.
Headers
| Key | Value | Required |
|---|---|---|
| Authorization | Token YOUR_API_KEY | Yes |
| Content-Type | application/json | No |
Response Field Explanations
id
string
Example: user_abc123xyz789
email
string
Example: user@example.com
name
string
Example: John Doe
username
string
Example: johndoe
is_verified
boolean
Example: true
is_active
boolean
Example: true
subscription_plan
string
Example: pro
subscription_status
string
Example: active
max_concurrency
integer
Example: 20
max_squids
integer
Example: 100
created_at
string
Example: 2023-06-15T10:30:00Z
last_login
string
Example: 2024-01-20T08:45:00Z
Pro Tip
Use this endpoint to verify your authentication is working before making other API calls. A successful response means your API key is valid.
Note
The response includes rate limit information in the headers. Check the `X-RateLimit-Remaining` header to monitor your API usage.