Retrieve all fonts - Abyssale REST API
Last updated 3 months ago
All of your fonts - google & custom - can be retrieved from the GET /fonts route.
GET /fonts
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()
Retrieve all of your fonts (custom & google fonts)
/fonts
curl -L \ --url 'https://api.abyssale.com/fonts' \ --header 'x-api-key: YOUR_API_KEY'
[ { "id": "61568e7c-33c5-11ea-9877-92672c1b8195", "name": "Ubuntu Mono", "type": "google", "available_weights": [ 100 ] } ]