Skip to main content
GET
/
api
/
v1
/
teams
/
{team_id}
/
strategy
/
brief
/
suggest
Suggest Strategy Brief
curl --request GET \
  --url https://api.example.com/api/v1/teams/{team_id}/strategy/brief/suggest \
  --header 'Authorization: Bearer <token>'
{
  "brief": "<string>",
  "audience": "<string>",
  "keywords": "<string>",
  "source": {
    "cycle_days": 123,
    "brand_kit_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "brand_kit_name": "<string>",
    "loops": [
      {
        "task_type": "<string>",
        "agent_name": "<string>",
        "every_n_days": 123
      }
    ],
    "missing_fields": [
      "<string>"
    ],
    "kit_content": {
      "tagline": "<string>",
      "mission_statement": "<string>",
      "brand_voice": "<string>",
      "tone_keywords": [
        "<string>"
      ],
      "industry": "<string>",
      "competitors": [
        "<string>"
      ],
      "target_audience": "<string>",
      "seo_keywords": [
        "<string>"
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aitasker.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string<uuid>
required

Response

Successful Response

Server-composed default brief derived from the team's Brand Kit + Work Loops.

Returned by GET /teams/{id}/strategy/brief/suggest. The frontend pre-fills empty brief/audience/keywords fields from this; the source manifest is rendered to the user so they can SEE what Brand Kit data fed the brief.

brief
string
required
audience
string
required
keywords
string
required
source
StrategyBriefSuggestionSource · object
required