Docs
Web

Extract a website's font families

GET/web/fonts
AuthorizationBearer <token>

Enter your API key with the bc_ prefix

In: header

Query Parameters

domain*string

Domain or URL to inspect

directUrl?string

Inspect this exact public URL instead of deriving a homepage from domain.

cacheMaxAgeMs?number

Maximum cache age in milliseconds.

Range0 <= value <= 604800000
timeoutMS?number

Request timeout hint in milliseconds.

Range1000 <= value <= 120000
maxSpeed?boolean

Prefer the fastest existing fetch path when possible.

Defaultfalse

Response Body

application/json

curl -X GET "https://example.com/web/fonts?domain=example.com"
{  "success": true,  "data": {    "status": "ok",    "code": 200,    "domain": "example.com",    "fonts": [      {        "family": "Inter",        "source": "google-fonts",        "url": "https://fonts.googleapis.com/css2?family=Inter",        "weights": [          "400",          "700"        ]      }    ],    "key_metadata": {      "credits_consumed": 5,      "credits_remaining": 4995    }  }}
Empty
Empty
Empty