Skip to main content

Dialects

List all supported dialects.

Request

GEThttps://api.fliki.ai/v1/dialects

Headers

{
"Content-type": "application/json",
"Authorization": "Bearer API_KEY"
}
KeyValueDescription
Content-Typeapplication/jsonSpecifies that the request body format is JSON, allowing the server to parse the data correctly.
AuthorizationBearer YOUR_API_KEYGenerate your API Key in the account/api. section and replace YOUR_API_KEY with your actual key.

Response

[
{
"_id": String,
"name": String,
"slug": String,
},
]
KeyTypeDescription
_idstringUnique identifier for each language.
namestringName of the dialect (e.g., “American English”, “British English”).
slugstringShortened, URL-friendly version of the dialect name (e.g., “en-us”, “en-gb”).

Example

cURL Request
curl \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" \
-X GET https://api.fliki.ai/v1/dialects