TheDocumentation Index
Fetch the complete documentation index at: https://docs.blinkpdf.io/llms.txt
Use this file to discover all available pages before exploring further.
/v1/fonts endpoint returns a JSON array of every font name available in the Blink PDF rendering engine. Use this endpoint to discover which fonts you can reference in your documents before you call the render endpoint. Because this is a lightweight metadata lookup, it never counts toward your render quota or rate limit.
Request Headers
Your Blink PDF API key, provided as a Bearer token.Format:
Bearer sk_live_...Response — 200 OK
The response body is a flat JSON array of font name strings. Each string is the canonical name you use when referencing that font in a render request.An array of available font name strings. Each entry is a font family name, for example
"Inter" or "Roboto".Example Response
Example Request
Error Responses
| Status Code | Meaning |
|---|---|
401 Unauthorized | The Authorization header is absent or the API key is invalid or revoked |
Calls to
GET /v1/fonts are always free. They do not count toward your plan’s render quota or rate limit, so you can call this endpoint as often as you need — for example, to populate a font picker in your application’s UI.