Voxco Languages API

The Languages API from Voxco — 1 operation(s) for languages.

Operations 1

GET /Languages/Translate Returns the languages supported for translation

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/voxco-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

voxco-languages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Ascribe Coder AICoder Languages API
  description: <br/>      To import this API to Postman, copy the URL from the top of this page.<br/>      Open Postman, and select Import.<br/>      In the dialog select 'Import From Link'.<br/>      Paste the URL and click Import.<br/><br/>      To use this API interactively from this page, open the POST Sessions operation below.<br/>      Click the Example Value in the Parameters section to move it to the request.<br/>      Modify the request with your credentials, then click "Try it out!"<br/>      Copy the value of the bearerToken returned in the response to the api_key text box at the top of this page.<br/>      You can now interact with the other resources on this page.<br/>      You can save the bearer token for future use without needing to POST to the Sessions resource again.
  contact:
    email: support@goascribe.com
  version: v2
servers:
- url: https://api.goascribe.us/coder/v2
  description: US Servers
- url: https://api.goascribe.eu/coder/v2
  description: EU Servers
- url: https://api-ca.goascribe.com/coder/v2
  description: CA Servers
security:
- Bearer: []
tags:
- name: Languages
paths:
  /Languages/Translate:
    get:
      tags:
      - Languages
      summary: Returns the languages supported for translation
      description: 'The Code for a language is used to specify the language when translating responses.


        The Name for a language is suitable for display on a user interface.'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/GetLanguagesToTranslateResponse'
              example:
                languages:
                - code: en
                  name: English
                - code: de
                  name: German
                - code: fr
                  name: French
                - code: uk
                  name: Ukrainian
                errorMessage: null
            application/json:
              schema:
                $ref: '#/components/schemas/GetLanguagesToTranslateResponse'
              example:
                languages:
                - code: en
                  name: English
                - code: de
                  name: German
                - code: fr
                  name: French
                - code: uk
                  name: Ukrainian
                errorMessage: null
            text/json:
              schema:
                $ref: '#/components/schemas/GetLanguagesToTranslateResponse'
              example:
                languages:
                - code: en
                  name: English
                - code: de
                  name: German
                - code: fr
                  name: French
                - code: uk
                  name: Ukrainian
                errorMessage: null
components:
  schemas:
    GetLanguagesToTranslateResponse:
      type: object
      properties:
        errorMessage:
          type:
          - string
          - 'null'
        languages:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/NaturalLanguage'
          description: List of supported languages
      additionalProperties: false
      description: Response that contains list of languages that are supported by this API.
    NaturalLanguage:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
          description: The language code, used to specify the language in API operations.
        name:
          type:
          - string
          - 'null'
          description: The name of the language suitable for display to the user.
      additionalProperties: false
      description: A natural language supported by this API.
  securitySchemes:
    Bearer:
      type: http
      description: 'Please enter a valid bearer token.


        It should be in the format "bearer eyJhbGciOiJSU..."


        It will be added to the "Authentication" HTTP header'
      scheme: Bearer
      bearerFormat: JWT