Skip to main content

Supported Languages

Fribl supports multiple languages for skill names and analysis output. Pass the desired language code in the Accept-Language header to receive translated responses.

Usage

curl -X GET https://api-service.fribl.co/api/v1/cvs/{id} \
  -H "X-API-KEY: your-api-key-here" \
  -H "Accept-Language: fr"
If no Accept-Language header is provided, the API defaults to English (en).

Available languages

CodeLanguage
enEnglish
frFrench
deGerman
itItalian
esSpanish
The list of supported languages may expand over time. Use the /skills/languages endpoint to programmatically retrieve the current set.

Querying available languages

Retrieve the full list of currently supported language codes:
curl -X GET https://api-service.fribl.co/api/v1/skills/languages
Response
["de", "en", "es", "fr", "it"]
This endpoint does not require authentication.