Fonts
Retrieve all fonts - Abyssale REST API
Authorizations
x-api-keystringRequired
All of your Abyssale requests must contain a x-api-key header with your API Key.
Responses
200
Ok
application/json
idstring · uuidRequiredExample:
Font unique ID, this parameter can be used to force a specific font on a text or a button element.
61568e7c-33c5-11ea-9877-92672c1b8195namestringRequiredExample:
The font name
Ubuntu Monotypestring · enumRequiredPossible values:
Either google for the Google fonts or custom for your uploaded fonts.
get
/fonts200
Ok
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

