Skip to main content
GET
/
api
/
v1
/
language
List supported languages
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/language \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Languages retrieved successfully",
  "data": {
    "items": [
      {
        "code": "it",
        "name": "Italian",
        "native_name": "Italiano",
        "flag": "🇮🇹"
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Response

200 - application/json

Languages retrieved successfully

success
boolean
Example:

true

message
string
Example:

"Languages retrieved successfully"

data
object