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 from retrieval endpoints.

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).
Update endpoints use a different field: send content_language in the request body to declare the language of the content you are updating. type and relationship remain static English enums and are not translated.

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.