# Strategy

GTM roadmap and voice framework.

GET `/brands/:slug/gtm`

GTM roadmap with phases.

Responses

200 GTM

```
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug/gtm \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/gtm/update`

Update GTM plan.

Request Body

```
{ "objective": "Increase brand awareness" }
```

Responses

200 Updated

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/gtm/update \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "objective": "Increase brand awareness" }'
```

GET `/brands/:slug/voice`

Voice framework.

Responses

200 Voice

```
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug/voice \
  -H "Authorization: Bearer $TOKEN"
```

POST `/brands/:slug/voice/update`

Update voice.

Request Body

```
{ "mood": "energetic", "tone": "friendly" }
```

Responses

200 Updated

```
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/voice/update \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "mood": "energetic", "tone": "friendly" }'
```

[

← Previous

Studio

](/docs/api/studio)[

Next →

Analytics

](/docs/api/analytics)

---
Source: https://www.anomalia.so/docs/api/strategy
