Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.blinkpdf.io/llms.txt

Use this file to discover all available pages before exploring further.

The /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.
GET https://api.blinkpdf.io/v1/fonts

Request Headers

Authorization
string
required
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.
(root)
string[]
An array of available font name strings. Each entry is a font family name, for example "Inter" or "Roboto".

Example Response

["Inter", "Roboto", "Lato", "Merriweather", "Source Code Pro"]

Example Request

curl https://api.blinkpdf.io/v1/fonts \
  -H "Authorization: Bearer sk_live_..."

Error Responses

Status CodeMeaning
401 UnauthorizedThe 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.