Agco Languages API

The Languages API from Agco — 2 operation(s) for languages.

Operations 5

GET /api/v2/Languages Get a list of the languages for which translations are supported. #
POST /api/v2/Languages Add a Language to support for translations. #
GET /api/v2/Languages/{LocaleID} Get a language by its id. Returns a Language object #
PUT /api/v2/Languages/{LocaleID} Update a language’s description. Accepts a Language object #
DELETE /api/v2/Languages/{LocaleID} Remove a Language from those supported for translations. #

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

agco-languages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: v1
  title: Languages API
servers:
- url: https://secure.agco-ats.com
tags:
- name: Languages
paths:
  /api/v2/Languages:
    get:
      tags:
      - Languages
      summary: Get a list of the languages for which translations are supported.
      description: No Documentation Found.
      operationId: Languages_GetLanguages
      parameters:
      - name: limit
        in: query
        description: limit the number of Language objects returned. Optional (defaults to 10).
        required: false
        schema:
          type: integer
          format: int32
      - name: offset
        in: query
        description: the number of Language objects to skip. Optional (defaults to 0).
        required: false
        schema:
          type: integer
          format: int32
      - name: includeDeleted
        in: query
        description: whether to include languages marked as deleted. Defaults to false
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.IPagedResponse_GlobalResources.Shared.Models.Language'
            text/json:
              schema:
                $ref: '#/components/schemas/API.IPagedResponse_GlobalResources.Shared.Models.Language'
            application/xml:
              schema:
                $ref: '#/components/schemas/API.IPagedResponse_GlobalResources.Shared.Models.Language'
            text/xml:
              schema:
                $ref: '#/components/schemas/API.IPagedResponse_GlobalResources.Shared.Models.Language'
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            application/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
    post:
      tags:
      - Languages
      summary: Add a Language to support for translations.
      description: No Documentation Found.
      operationId: Languages_CreateLanguage
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                format: int32
                type: integer
            text/json:
              schema:
                format: int32
                type: integer
            application/xml:
              schema:
                format: int32
                type: integer
            text/xml:
              schema:
                format: int32
                type: integer
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            application/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
          text/json:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
          application/xml:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
          text/xml:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
        required: true
  /api/v2/Languages/{LocaleID}:
    get:
      tags:
      - Languages
      summary: Get a language by its id. Returns a Language object
      description: No Documentation Found.
      operationId: Languages_GetLanguage
      parameters:
      - name: LocaleID
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
            text/json:
              schema:
                $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
            application/xml:
              schema:
                $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
            text/xml:
              schema:
                $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            application/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
            text/xml:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
    put:
      tags:
      - Languages
      summary: Update a language’s description. Accepts a Language object
      description: No Documentation Found.
      operationId: Languages_UpdateLanguage
      parameters:
      - name: LocaleID
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: No Content
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
          text/json:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
          application/xml:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
          text/xml:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
        required: true
    delete:
      tags:
      - Languages
      summary: Remove a Language from those supported for translations.
      description: No Documentation Found.
      operationId: Languages_DeleteLanguage
      parameters:
      - name: LocaleID
        in: path
        description: ''
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: No Content
        default:
          description: API Error Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/API.Models.ApiError'
      deprecated: false
components:
  schemas:
    GlobalResources.Shared.Models.Language:
      description: A language used for string translations.
      required:
      - LocaleId
      - Description
      type: object
      properties:
        LocaleId:
          format: int32
          description: The Locale Id of the language.
          type: integer
        Description:
          description: The description of the language (e.g. “English – United States”).
          type: string
        IsDeleted:
          description: Indicates whether the API supports the language. Must be false when created. Read Only.
          type: boolean
    API.Models.ApiError:
      type: object
      properties:
        DeveloperMessage:
          type: string
        UserMessage:
          type: string
        ErrorCode:
          format: int32
          type: integer
        MoreInfo:
          type: string
    API.PagedResponseMetadata:
      description: Metadata for the paged response
      required:
      - TotalCount
      - Limit
      - Offset
      type: object
      properties:
        TotalCount:
          format: int32
          description: The total number of entities matching the request.
          type: integer
          readOnly: true
        Limit:
          format: int32
          description: The number of entities this paged response is limited to.
          type: integer
          readOnly: true
        Offset:
          format: int32
          description: The number of entities prior to this page of items.
          type: integer
          readOnly: true
    API.IPagedResponse_GlobalResources.Shared.Models.Language:
      type: object
      properties:
        Entities:
          type: array
          items:
            $ref: '#/components/schemas/GlobalResources.Shared.Models.Language'
          readOnly: true
        Metadata:
          $ref: '#/components/schemas/API.PagedResponseMetadata'
          readOnly: true