Update Font Tags
Learn how to update tags on a custom font
Overview#
This endpoint allows you to update the tags on a specific custom font in your workspace.
https://api.orshot.com/v1/brand-assets/fonts/update/:idRequest#
await fetch("https://api.orshot.com/v1/brand-assets/fonts/update/456", {
method: "PATCH",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer <ORSHOT_API_KEY>",
},
body: JSON.stringify({
tags: ["heading", "brand", "serif"],
}),
});Path Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
id | Number | Yes | The unique identifier of the font to update |
Request Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
tags | String[] | Yes | Array of tags to set on the font (replaces any existing tags) |
Notes#
- Tags are automatically normalized: trimmed, deduplicated (case-insensitive), and empty values are removed
- Passing an empty array
[]will clear all tags from the font - The font cache is automatically invalidated when tags are updated
Error Responses#
Font Not Found (404)#
{
"error": "Font not found"
}Invalid Tags (400)#
{
"error": "\"tags\" must be an array of strings"
}Rate Limits#
- 30 requests per minute per endpoint

All Set? Let's Start Automating
- Image, PDF and Video Generation via API
- Canva like editor with AI and smart features
- No-Code Integrations (Zapier, Make, n8n etc.)
- Embed Orshot Studio in your app
- Start Free. No credit card required. Cancel anytime.