Coorpacademy Jobs API

The jobs API from Coorpacademy — 1 operation(s) for jobs.

Operations 1

POST /repository/{repository}/jobs/add-locale Add a new locale to repository resources #

Documentation

Specifications

Other Resources

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/coorpacademy-jobs-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

coorpacademy-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API to manage CoorpAcademy content
  version: 2.276.0
  title: Content Jobs API
servers:
- url: /api/v2
- url: http://localhost:3700/api/v2
- url: https://content-staging.coorpacademy.com/api/v2
- url: https://content.coorpacademy.com/api/v2
host: content.coorpacademy.com
tags:
- name: jobs
paths:
  /repository/{repository}/jobs/add-locale:
    post:
      tags:
      - jobs
      summary: Add a new locale to repository resources
      description: Add a new locale to repository resources
      operationId: addLocale
      security:
      - token: []
      x-exegesis-controller: jobs
      requestBody:
        description: parameters to copy the locales
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddLocaleBody'
      parameters:
      - name: repository
        in: path
        description: Ref of the repository
        required: true
        schema:
          type: string
        example: content-core@cockpitRecette-core
      responses:
        '200':
          description: Repository resources were updated.
components:
  schemas:
    AddLocaleBody:
      type: object
      required:
      - from
      - to
      - username
      properties:
        from:
          type: string
          description: source locale
        to:
          type: string
          description: destination locale
        username:
          type: string
          description: github user
      example:
        from: en
        to: pt_BR
        username: jomaora
  securitySchemes:
    token:
      type: apiKey
      name: authorization
      in: header