GET /account/activity
All-time per-surface activity flags: the dashboards' demo-data fallback reads these instead of inferring "no history" from a windowed, filtered response.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/account/activity |
curl "https://api.ellipsis.dev/v1/account/activity" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.account.activity()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.account.activity();
console.log(result);Request
Response
Example response · 200
{
"has_agent_sessions": false,
"has_code_reviews": false,
"has_pull_requests": false,
"has_v1_traffic": false
}