> ## Documentation Index
> Fetch the complete documentation index at: https://docs.beyondwords.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List fonts

> Get a list of custom fonts for the organization and built-in fonts



## OpenAPI

````yaml get /organization/fonts
openapi: 3.0.1
info:
  title: BeyondWords REST API
  description: |-
    This is the documentation for the BeyondWords REST API.
              You can use this API to use BeyondWords programmatically.
              You can get your API Key and Project ID for each project in the Project settings tab in the BeyondWords
              <a href="https://dash.beyondwords.io/dashboard">dashboard</a>.
  version: 1.0.0
servers:
  - url: https://api.beyondwords.io/v1
security: []
paths:
  /organization/fonts:
    get:
      tags:
        - Fonts
      summary: List
      description: Get a list of custom fonts for the organization and built-in fonts
      operationId: fonts#index
      responses:
        '200':
          description: OK
          content:
            application/json:
              examples:
                example:
                  $ref: '#/components/examples/fontsExample'
              schema:
                $ref: '#/components/schemas/fontsModel'
      security:
        - apiKey: []
components:
  examples:
    fontsExample:
      summary: Sample list of fonts
      value:
        - 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
  schemas:
    fontsModel:
      type: array
      items:
        $ref: '#/components/schemas/fontModel'
    fontModel:
      type: object
      properties:
        id:
          type: integer
          description: Unique identifier for the object
          nullable: true
        name:
          type: string
          description: The name of the font
          nullable: false
        url:
          type: string
          description: The url of the custom font
          nullable: true
        filename:
          type: string
          description: The filename of the built-in font
          nullable: true
        fallback:
          type: boolean
          description: Whether the font is used as a language fallback
          nullable: false
        created:
          type: string
          format: date-time
          description: Time at which the object was created (ISO 8601)
          nullable: true
        updated:
          type: string
          format: date-time
          description: Time at which the object was updated (ISO 8601)
          nullable: true
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````