Exentis Group Languages API

The Languages API from Exentis Group — the Polylang language configuration for the site, returning locale, slug, default flag, home and search URLs and per-language content counts for German (de_CH, default) and English (en_US). It is the endpoint that tells a client which `lang` values every other collection on this host will accept.

Operations 1

GET /pll/v1/languages List configured site languages #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/exentis-group-languages-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

exentis-group-languages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Exentis Group Languages API
  version: 1.0.0
  description: 'The Polylang language configuration for www.exentis-group.com — the site is published in German (de_CH, default) and English (en_US), and this endpoint is what tells a client which locales exist, which is default, their home and search URLs and their content counts. Every other collection on this host accepts the resulting `lang` slug as a filter.


    Derived by API Evangelist from the live WordPress REST API discovery document at https://www.exentis-group.com/wp-json/ and an anonymous sample response.'
  contact:
    name: Exentis Group AG
    email: info@exentis-group.com
    url: https://www.exentis-group.com/en/contact/
  termsOfService: https://www.exentis-group.com/en/terms-of-use/
  x-provenance:
    method: derived
    source: https://www.exentis-group.com/wp-json/
    derived: '2026-08-12'
    by: API Evangelist enrichment pipeline
servers:
- url: https://www.exentis-group.com/wp-json
  description: WordPress REST API root on the Exentis Group production host.
tags:
- name: Languages
paths:
  /pll/v1/languages:
    get:
      operationId: listLanguages
      summary: List configured site languages
      description: Returns every language configured in Polylang, with locale, slug, default flag, home URL, search URL and per-language content counts. No authentication required.
      tags:
      - Languages
      parameters: []
      responses:
        '200':
          description: The configured languages.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Language'
components:
  schemas:
    Language:
      type: object
      properties:
        name:
          type: string
        slug:
          type: string
        term_group:
          type: integer
        term_id:
          type: integer
        locale:
          type: string
        is_rtl:
          type: boolean
        w3c:
          type: string
        facebook:
          type: string
        home_url:
          type: string
        search_url:
          type: string
        host:
          type: string
        page_on_front:
          type: integer
        page_for_posts:
          type: integer
        flag_code:
          type: string
        flag_url:
          type: string
        flag:
          type: string
        custom_flag_url:
          type: string
        custom_flag:
          type: string
        active:
          type: boolean
        fallbacks:
          type: array
          items: {}
        is_default:
          type: boolean
        term_props:
          type: object
          properties:
            language:
              type: object
              properties:
                term_id:
                  type: integer
                term_taxonomy_id:
                  type: integer
                count:
                  type: integer
            term_language:
              type: object
              properties:
                term_id:
                  type: integer
                term_taxonomy_id:
                  type: integer
                count:
                  type: integer
      description: Polylang language object. Structure derived from a live anonymous response; values are not reproduced here. Note `flag` carries an inline base64 data-URI image.