Get the team's brand kit
Authorization
ApiKeyAuth API key from Settings → API Keys.
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/api/v1/brand_kit"{ "id": "cm4bk8e20001js04xq2v9k3m", "name": "Default", "colors": [ { "name": "Brand blue", "hex": "#085CC2" } ], "kits": [ { "id": "cm4bk8e20001js04xq2v9k3m", "name": "Default", "is_default": true, "colors": [ { "name": "Brand blue", "hex": "#085CC2" } ] } ], "fonts": [ { "id": "cm4bka8e20001js04xq2v9k3m", "filename": "Anton-Regular.ttf", "family": "Anton", "kit_id": "cm4bk8e20001js04xq2v9k3m", "kit_name": "Default", "self": "https://automette.com/api/v1/brand_kit/fonts/cm4bka8e20001js04xq2v9k3m" } ], "images": [ { "id": "cm4bki7f10001js04ha2p8w4n", "filename": "logo.png", "type": "logo", "content_type": "image/png", "key": "brand-kits/cm4bk8e20001js04xq2v9k3m/cm4bki7f10001js04ha2p8w4n/logo.png", "url": "https://files.automette.com/brand-kits/cm4bk8e20001js04xq2v9k3m/cm4bki7f10001js04ha2p8w4n/logo.png", "kit_id": "cm4bk8e20001js04xq2v9k3m", "kit_name": "Default", "self": "https://automette.com/api/v1/brand_kit/images/cm4bki7f10001js04ha2p8w4n" } ]}Where to start GET
The entry point. One call that says what this API is for and where to read the rest. `start_here` points at the **recipes** skill — what you can do and the route to each thing, including what is deliberately not possible. Read it before authoring anything: it is the difference between a template that renders and one that looks plausible and fails. `skills` is the full catalogue, each fetchable in full at its `self`.
Set the brand palette PATCH
Set the team's colours, or rename the kit. `colors` replaces the whole list — a palette is small, ordered, and read as a set, and you already hold the current one from `GET`. Send `[]` to clear it. Edits the default kit — the one `GET` reports at the top level. Other kits are renamed from the Brand Kit page in the dashboard. Files are not edited here. Fonts and images are uploads, and have their own endpoints.