VideoGen API
  1. Resources
VideoGen API
  • Text to Video
    • Prompt to video
    • Prompt to outline
    • Outline to video
    • Get file
  • Resources
    • Get voices
      GET
    • Get languages
      GET
    • Get fonts
      GET
  • Examples
    • Interacting with the Video Outline
    • Polling vs Webhooks
  • v1
    • Text to Video
      • Script to video
      • Prompt to script
      • Get file
    • Resources
      • Get voices
      • Get languages
      • Get fonts
    • Examples
      • Generate a Video
  1. Resources

Get fonts

GET
https://ext.videogen.io/v2/get-fonts
v2
Get a list of fonts supported by the VideoGen API. These fonts can be used to customize and enhance the style of captions in videos.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://ext.videogen.io/v2/get-fonts'

Responses

🟢200Successfully fetched fonts
application/json
Body
fonts
array[object (Font Summary) {1}] 
required
fontName
string 
required
Name of the font.
Example
{
  "fonts": [
    {
      "fontName": "Inter"
    },
    {
      "fontName": "Verdana"
    },
    {
      "fontName": "PT Serif"
    },
    {
      "fontName": "Roboto Slab"
    },
    {
      "fontName": "Bungee"
    },
    {
      "fontName": "Anton"
    },
    {
      "fontName": "Abril Fatface"
    },
    {
      "fontName": "Koulen"
    },
    {
      "fontName": "Lobster"
    },
    {
      "fontName": "Luckiest Guy"
    },
    {
      "fontName": "Carter One"
    },
    {
      "fontName": "Russo One"
    },
    {
      "fontName": "Poiret One"
    },
    {
      "fontName": "Monoton"
    },
    {
      "fontName": "Comfortaa"
    },
    {
      "fontName": "Atma"
    },
    {
      "fontName": "Frijole"
    },
    {
      "fontName": "Rubik Moonrocks"
    },
    {
      "fontName": "Creepster"
    },
    {
      "fontName": "Silkscreen"
    }
  ]
}
🟠400Failed to fetch fonts
Previous
Get languages
Next
Interacting with the Video Outline