Skip to content
GET /v1/languages

Supported languages

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/profanity-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/profanity-api/v1/languages" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/profanity-api/v1/languages", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/profanity-api/v1/languages");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/profanity-api/v1/languages",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 24,
        "languages": [
            {
                "code": "ar",
                "terms": 38
            },
            {
                "code": "cs",
                "terms": 41
            },
            {
                "code": "da",
                "terms": 20
            },
            {
                "code": "de",
                "terms": 66
            },
            {
                "code": "en",
                "terms": 403
            },
            {
                "code": "eo",
                "terms": 37
            },
            {
                "code": "es",
                "terms": 68
            },
            {
                "code": "fa",
                "terms": 45
            },
            {
                "code": "fi",
                "terms": 130
            },
            {
                "code": "fr",
                "terms": 91
            },
            {
                "code": "hi",
                "terms": 119
            },
            {
                "code": "hu",
                "terms": 96
            },
            {
                "code": "it",
                "terms": 168
            },
            {
                "code": "ja",
                "terms": 180
            },
            {
                "code": "ko",
                "terms": 72
            },
            {
                "code": "nl",
                "terms": 190
            },
            {
                "code": "no",
                "terms": 40
            },
            {
                "code": "pl",
                "terms": 54
            },
            {
                "code": "pt",
                "terms": 76
            },
            {
                "code": "ru",
                "terms": 151
            },
            {
                "code": "sv",
                "terms": 43
            },
            {
                "code": "th",
                "terms": 31
            },
            {
                "code": "tr",
                "terms": 142
            },
            {
                "code": "zh",
                "terms": 319
            }
        ],
        "total_terms": 2620
    },
    "meta": {
        "timestamp": "2026-06-02T16:52:05.211Z",
        "request_id": "5975bfb4-cb9d-4657-a5c2-6031998698aa"
    },
    "status": "ok",
    "message": "Supported languages",
    "success": true
}