AI Fonts Generator — Free Unicode Font API

A free, static JSON API. No auth, no rate limits, no cost. Just fetch a JSON file and read the data.

Base URL

https://aifontsgenerator.com/api/

Endpoints

Endpoint Description
GET/api/styles.json Returns every available text style with its name, category, and a rendered example.
GET/api/index.json API discovery/metadata — endpoint list, license, and contact info.

Response Format

GET /api/styles.json returns:

{
  "name": "AI Fonts Generator API",
  "description": "Free Unicode font style data. 168+ text transformation styles for Instagram, Discord, gaming names and social media.",
  "version": "1.0.0",
  "docs": "https://aifontsgenerator.com/api-docs.html",
  "source": "https://aifontsgenerator.com",
  "total_styles": 410,
  "categories": ["Bold", "Classic Styles", "Cursive Extended", "..."],
  "styles": [
    {
      "name": "Bold",
      "category": "Classic Styles",
      "example_input": "Hello",
      "example_output": "𝗛𝗲𝗹𝗹𝗼"
    }
  ]
}

Styles built from a procedural transform (glitch effects, randomized decoration, etc.) instead of a fixed character map return example_output: null — the style itself still works fine in the generator, it just can't be reduced to one static example.

Use Cases

🤖 Discord bots
🧩 Browser extensions
📝 Notion widgets
📱 Mobile apps
⚙️ Text automation

Rate Limits

None. These are static JSON files served over GitHub Pages' CDN — fetch them as often as you like.

License

Free for non-commercial use. For commercial use, email chris.shangrei@gmail.com first.
← Back to AI Fonts Generator