# Get Fonts

> Learn how to retrieve custom fonts from your workspace

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

---

## Overview

This endpoint allows you to retrieve a list of custom fonts uploaded to your workspace. Custom fonts can be used in your templates for consistent brand typography.```markdown tab="Endpoint"
https://api.orshot.com/v1/brand-assets/fonts/get
```## Query Parameters

| Parameter | Type   | Required | Description                                                                                     |
| --------- | ------ | -------- | ----------------------------------------------------------------------------------------------- |
| `tag`     | String | No       | Comma-separated list of tags to filter by. Returns only fonts that have **all** specified tags. |

## Request

<Tabs items=>
<Tab value="Request">```js
await fetch("https://api.orshot.com/v1/brand-assets/fonts/get", {
  method: "GET",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>
<Tab value="Filter by Tags">```js
await fetch("https://api.orshot.com/v1/brand-assets/fonts/get?tag=heading,brand", {
  method: "GET",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>
<Tab value="Response">```json
{
  "data": [
    {
      "id": 456,
      "created_at": "2025-09-10T15:30:45.123Z",
      "name": "BrandFont-Bold.ttf",
      "file_url": "https://storage.orshot.com/custom-fonts/workspace_id/BrandFont-Bold.ttf",
      "tags": ["heading", "brand"],
      "workspace_id": 50,
      "user_id": "abcdef01-2345-6789-abcd-ef0123456789"
    }
  ]
}
```</Tab>
</Tabs>

## Rate Limits

- 30 requests per minute per endpoint

## Response Fields

| Field          | Type     | Description                             |
| -------------- | -------- | --------------------------------------- |
| `id`           | Number   | Unique identifier for the font          |
| `created_at`   | String   | Timestamp when the font was uploaded    |
| `name`         | String   | Font filename                           |
| `file_url`     | String   | URL to access the font file             |
| `tags`         | String[] | Tags associated with the font           |
| `workspace_id` | Number   | ID of the workspace the font belongs to |
| `user_id`      | String   | ID of the user who uploaded the font    |