Abyssale Developer Hub
  • Getting Started
  • Rest API
    • Overview - Rest API
    • Authentication
    • Designs
      • Design Details
    • Generation
      • Design information
      • Synchronous generation
        • Generate single image
      • Asynchronous generation
        • Generate Multi-Format images
        • Generate Multi-Format PDFs for Printing
        • Generate Multi-Page PDF for Printing
        • Generate Multi-Format Videos
        • Generate Multi-Format Animated GIFs
        • Generate HTML5 Banner Ads
          • ad network
      • Element properties
        • Root
        • Text
        • Button
        • Image
        • Logo
        • Shape
        • Rating
        • Illustration
        • QR Code
        • Video
        • Audio
      • Errors
    • Image Export
    • Fonts
    • Annexes
    • API Reference
  • Dynamic Images
    • Overview - Dynamic Images
    • Dynamic Image generation with URL
  • Webhooks
    • Overview - Webhooks
    • Events
      • Design
      • Banner
      • Global events
Powered by GitBook
On this page
  1. Rest API

Fonts

Retrieve all fonts - Abyssale REST API

PreviousImage ExportNextAnnexes

Last updated 5 months ago

All of your fonts - google & custom - can be retrieved from the GET /fonts route.

curl -H "x-api-key: {YOUR-API-KEY}" -H "Content-Type: application/json" https://api.abyssale.com/fonts
const axios = require('axios');

axios.get("https://api.abyssale.com/fonts", {headers: {"x-api-key": "{YOUR-API-KEY}", "Content-Type": "application/json", "timeout": 30000}}).then(response => {
    console.log(response.data)
})
import requests

r = requests.get("https://api.abyssale.com/fonts", headers={"x-api-key": "{YOUR-API-KEY}", "Content-Type": "application/json"}, timeout=30)
r.json()

Get fonts

get

Retrieve all of your fonts (custom & google fonts)

Authorizations
Responses
200
Ok
application/json
get
GET /fonts HTTP/1.1
Host: api.abyssale.com
x-api-key: YOUR_API_KEY
Accept: */*
200

Ok

[
  {
    "id": "61568e7c-33c5-11ea-9877-92672c1b8195",
    "name": "Ubuntu Mono",
    "available_weights": [
      100
    ],
    "type": "google"
  }
]