Web
Extract a website's font families
GET
/web/fontsAuthorization
api-key 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.
Range
0 <= value <= 604800000timeoutMS?number
Request timeout hint in milliseconds.
Range
1000 <= value <= 120000maxSpeed?boolean
Prefer the fastest existing fetch path when possible.
Default
falseResponse 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