Swagger Codegen Languages API

Discover available generator languages and types

Operations 2

GET /{type}/{version} List Generator Languages #
GET /types List Languages by Multiple Types #

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/swagger-codegen-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

swagger-codegen-languages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Swagger Generator Languages API
  description: The Swagger Generator online REST API at generator3.swagger.io provides endpoints for generating client SDKs, server stubs, and documentation artifacts from OpenAPI V2 and V3 specifications. Supports 40+ client languages and 20+ server frameworks with configurable generation options.
  version: 3.0.75
  contact:
    name: Swagger
    url: https://swagger.io/tools/swagger-codegen/
  license:
    name: Apache 2.0
    url: https://github.com/swagger-api/swagger-codegen/blob/master/LICENSE
  x-logo:
    url: https://kinlane-images.s3.amazonaws.com/shared/apis-json/apis-json-logo.jpg
servers:
- url: https://generator3.swagger.io
  description: Swagger Generator V3 online service
tags:
- name: Languages
  description: Discover available generator languages and types
paths:
  /{type}/{version}:
    get:
      operationId: listLanguages
      summary: List Generator Languages
      description: Returns the list of available generator language identifiers for the given generator type (client, server, documentation, config) and OpenAPI version (V2 or V3).
      tags:
      - Languages
      parameters:
      - name: type
        in: path
        required: true
        schema:
          type: string
          enum:
          - client
          - server
          - documentation
          - config
        description: Generator type to list
      - name: version
        in: path
        required: true
        schema:
          type: string
          enum:
          - V2
          - V3
        description: OpenAPI specification version
      responses:
        '200':
          description: Array of language/framework identifier strings
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
              example:
              - python
              - java
              - go
              - typescript-axios
              - kotlin-client
        '400':
          description: Invalid type or version
  /types:
    get:
      operationId: listLanguagesMulti
      summary: List Languages by Multiple Types
      description: Returns the list of available generator languages filtered by a comma- separated list of generator types and an optional OpenAPI version.
      tags:
      - Languages
      parameters:
      - name: types
        in: query
        required: false
        schema:
          type: string
        description: Comma-separated list of generator types (client,server,documentation,config)
      - name: version
        in: query
        required: false
        schema:
          type: string
          enum:
          - V2
          - V3
        description: OpenAPI specification version filter
      responses:
        '200':
          description: Array of language identifier strings
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string