Fonts
Retrieve all fonts - Abyssale REST API
All of your fonts - google & custom - can be retrieved from the
GET /fonts
route.get
https://api.abyssale.com
/fonts
Get fonts
cURL
Javascript
Python
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()
Last modified 1mo ago