Assemble
REST API

Briefing

GET
/api/v1/briefing

Everything an external agent should read before doing work: standing workspace context, hard directives, and the org's active rules and definitions.

Authorization

bearerAuth
AuthorizationBearer <token>

Workspace API key (Settings → API Keys)

In: header

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/briefing"
{
  "workspace": {
    "name": "string",
    "context": "string"
  },
  "directives": [
    {
      "id": "string",
      "name": "string",
      "content": "string"
    }
  ],
  "directivesAvailable": true,
  "memories": [
    {
      "type": "rule",
      "statement": "string",
      "goingForward": "string",
      "createdAt": 0
    }
  ]
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}