Skip to main content
GET
/
organization
/
fonts
List
curl --request GET \
  --url https://api.beyondwords.io/v1/organization/fonts \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1,
    "name": "My custom font",
    "url": "https://example.com/my-custom-font.ttf",
    "filename": null,
    "fallback": false,
    "created": "2025-01-02 23:59:59 UTC",
    "updated": "2025-01-02 23:59:59 UTC"
  },
  {
    "id": null,
    "name": "Inter (Medium)",
    "url": null,
    "filename": "Inter-Medium.ttf",
    "fallback": false,
    "created": null,
    "updated": null
  },
  {
    "id": null,
    "name": "NotoSansThai",
    "url": null,
    "filename": "NotoSansThai-Medium.ttf",
    "fallback": true,
    "created": null,
    "updated": null
  }
]

Authorizations

X-Api-Key
string
header
required

Response

200 - application/json

OK

id
integer | null

Unique identifier for the object

name
string

The name of the font

url
string | null

The url of the custom font

filename
string | null

The filename of the built-in font

fallback
boolean

Whether the font is used as a language fallback

created
string<date-time> | null

Time at which the object was created (ISO 8601)

updated
string<date-time> | null

Time at which the object was updated (ISO 8601)