Get today and my work

Returns the caller’s deterministic daily-focus Context Package: what needs attention across their portfolio, cited evidence, related projects/work items, coverage, and provenance. Workspace is resolved from the credential, never from the request.

GET/api/v1/me/today

Authorization

agent:readapi key scoperequired
Required scope when calling with an API key.
agent:context_querysession capabilityoptional
Required capability when calling with a signed-in session.

Query parameters

questionstringoptional
Optional daily-focus phrasing. Defaults to “What should I focus on today?”

Example: Give me my morning briefing

Request

curl -X GET "https://www.digitalstack360.com/api/v1/me/today" \
  -H "Authorization: Bearer $DS_API_KEY"

Examples use a placeholder key from your environment. Store your key in $DS_API_KEY — never commit it.

Response

200 OK
{
  "data": {
    "intent": {
      "name": "daily_focus"
    },
    "summary": "2 of 8 projects need attention. Top: Alpha, Charlie.",
    "subject": {
      "kind": "portfolio",
      "id": "ws_abc123",
      "display_name": "Your portfolio (8 active projects)"
    },
    "related_entities": [
      {
        "kind": "project",
        "id": "proj_alpha",
        "name": "Alpha",
        "drilldown_tool": "query_context"
      }
    ],
    "coverage": {
      "sources": [
        {
          "source": "list_projects",
          "status": "ok",
          "reason": "8 project(s)"
        },
        {
          "source": "portfolio_health_scan",
          "status": "ok",
          "reason": "8/8 returned"
        }
      ]
    },
    "provenance": {
      "plan_id": "daily_focus.v1",
      "planner": "deterministic",
      "synthesizer": "none"
    }
  },
  "meta": {
    "intent": "daily_focus",
    "context_package_version": "C1",
    "deterministic": true
  }
}

Errors

401
missing_auth

No credentials provided

401
invalid_api_key

API key is invalid or revoked

403
scope_insufficient

Key lacks agent:read scope