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

# Listing All Fonts

> How to list fonts uploaded to your Nexrender Cloud Account.

Once you've uploaded fonts to your Nexrender Cloud account, you can list them to confirm their availability or debug font-related issues.

## How Fonts Are Matched

When rendering, Nexrender Cloud installs fonts based on:

* **Exact file name match** between After Effects project and uploaded `.ttf`
* Fonts are case-sensitive and must retain their original names

> AE uses the system-installed font name internally. To avoid mismatch, make sure your uploaded font’s file name matches what’s referenced in AE.

## Troubleshooting Tips

* If your text layers render with wrong fonts or break, first check:
* That the font is uploaded to Nexrender
* Font is referenced in the render job request
* That the file name (e.g. `OpenSans-Regular.ttf`) matches what AE expects
* Re-upload the font to resolve a corrupted or partial upload

## API Reference


## OpenAPI

````yaml GET /fonts
openapi: 3.0.4
info:
  title: Nexrender API
  version: '2.0'
  description: >
    REST API for the Nexrender cloud rendering platform, enabling programmatic
    control over After Effects template processing, job management, and asset
    handling.


    Features include:


    - Template upload and management (AEP, MOGRT, ZIP files)

    - Job creation and status monitoring with real-time progress

    - Job nesting for multi-composition renders (parent/child jobs)

    - Job stitching to combine multiple videos into one

    - Batch job creation for submitting up to 1000 jobs at once

    - Font library management for typography consistency

    - Secret management for secure API key storage

    - Webhook notifications for job lifecycle events

    - Asset injection for dynamic content replacement


    Authentication is required for all endpoints using Bearer token
    authorization.
servers:
  - url: https://api.nexrender.com/api/v2
    description: Production API server
security:
  - apiToken: []
paths:
  /fonts:
    get:
      tags:
        - Font Management
      summary: List all fonts for team
      description: >-
        Retrieve all fonts available to the authenticated team, including
        metadata and upload information
      operationId: listFonts
      responses:
        '200':
          description: Successfully retrieved list of fonts
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Font'
        '401':
          description: Unauthorized - invalid or missing API token
components:
  schemas:
    Font:
      type: object
      description: >-
        Font file metadata for team-shared typography resources used in After
        Effects rendering
      properties:
        id:
          type: string
          description: Unique font identifier
        familyName:
          type: string
          description: >-
            Font family name (e.g., "Arial", "Helvetica Neue") extracted from
            font metadata (or custom)
        fileName:
          type: string
          description: >-
            Original font file name as uploaded (supports TTF only). This is the
            file name referenced in pushed jobs.
        createdAt:
          type: string
          format: date-time
          description: ISO timestamp when the font was uploaded and processed
  securitySchemes:
    apiToken:
      type: http
      scheme: bearer
      description: >
        Bearer token authentication using API tokens for team-based access
        control.


        You can generate your own API token at:
        https://app.nexrender.com/settings/api-tokens

````