# Delete Font

> Learn how to delete a custom font from your workspace

- **URL**: https://orshot.com/docs/api-reference/custom-fonts-delete

---

## Overview

This endpoint allows you to delete a specific custom font from your workspace using its unique ID.```markdown tab="Endpoint"
https://api.orshot.com/v1/brand-assets/fonts/delete/:id
```## Request

<Tabs items=>
<Tab value="Request">```js
await fetch("https://api.orshot.com/v1/brand-assets/fonts/delete/456", {
  method: "DELETE",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>
<Tab value="Response">```json
{
  "message": "Font successfully deleted",
  "id": "456"
}
```</Tab>
</Tabs>

## Path Parameters

| Parameter | Type   | Required | Description                                 |
| --------- | ------ | -------- | ------------------------------------------- |
| `id`      | Number | Yes      | The unique identifier of the font to delete |

## Error Responses

### Font Not Found (404)```json
{
  "error": "Font not found"
}
```### Missing Font ID (400)```json
{
  "error": "Font ID is required"
}
```### Unauthorized (403)```json
{
  "error": "Access Forbidden"
}
```## Notes

- The font must belong to your workspace
- Once deleted, fonts cannot be recovered
- Templates using the deleted font will fall back to the default font
- The font cache is automatically invalidated when a font is deleted

## Rate Limits

- 30 requests per minute per endpoint