Fonts
Retrieve all fonts - Abyssale REST API
All of your fonts - google & custom - can be retrieved from the GET /fonts route.
Retrieve all of your fonts (custom & google fonts)
Authorizations
Responses
200
Ok
application/json
get
/fontsGET /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"
}
]curl -H "x-api-key: {YOUR-API-KEY}" -H "Content-Type: application/json" https://api.abyssale.com/fontsconst 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 updated