Work Market Talent Pools API

The Talent Pools API from Work Market — 6 operation(s) for talent pools.

Operations 6

GET /v1/employer/groups/list List talent pools #
POST /v1/employer/groups/{groupId}/add_workers Add or invite workers to talent pool #
POST /v1/employer/groups/{groupId}/apply_on_behalf Add workers to talent pool #
POST /v1/employer/groups/{groupId}/approve_workers Approve workers in talent pool #
POST /v1/employer/groups/{groupId}/decline_workers Decline workers from talent pool #
POST /v1/employer/groups/{groupId}/remove_workers Remove workers from talent pool #

Documentation

Specifications

Schemas & Data

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/work-market-talent-pools-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

work-market-talent-pools-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Employer APIs
  version: v1
  title: Swagger spec for Work Market API v1 Addressbook Talent Pools API
  termsOfService: https://developer.workmarket.com/tos
  contact:
    name: Work Market API Team
    url: https://developer.workmarket.com
    email: api@workmarket.com
  license:
    name: Company Licence
    url: https://developer.workmarket.com/licenses/LICENSE-2.0.html
servers:
- url: https://www.workmarket.com/
tags:
- name: Talent Pools
paths:
  /v1/employer/groups/list:
    get:
      tags:
      - Talent Pools
      summary: List talent pools
      description: ''
      operationId: listTalentPoolsAction
      parameters:
      - name: iDisplayStart
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: iDisplayLength
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: start
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: activeOnly
        in: query
        required: false
        schema:
          type: boolean
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    type: array
                    items:
                      $ref: '#/components/schemas/TalentPool'
  /v1/employer/groups/{groupId}/add_workers:
    post:
      tags:
      - Talent Pools
      summary: Add or invite workers to talent pool
      description: ''
      operationId: addOrInviteWorkersAction
      parameters:
      - name: groupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    $ref: '#/components/schemas/v1Status'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
  /v1/employer/groups/{groupId}/apply_on_behalf:
    post:
      tags:
      - Talent Pools
      summary: Add workers to talent pool
      description: ''
      operationId: applyToTalentPoolOnBehalfAction
      parameters:
      - name: groupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    $ref: '#/components/schemas/ApplyToTalentPoolOnBehalfResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApplyToTalentPoolOnBehalfRequest'
  /v1/employer/groups/{groupId}/approve_workers:
    post:
      tags:
      - Talent Pools
      summary: Approve workers in talent pool
      description: ''
      operationId: approveWorkersAction
      parameters:
      - name: groupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    $ref: '#/components/schemas/v1Status'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
  /v1/employer/groups/{groupId}/decline_workers:
    post:
      tags:
      - Talent Pools
      summary: Decline workers from talent pool
      description: ''
      operationId: declineWorkersAction
      parameters:
      - name: groupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    $ref: '#/components/schemas/v1Status'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
  /v1/employer/groups/{groupId}/remove_workers:
    post:
      tags:
      - Talent Pools
      summary: Remove workers from talent pool
      description: ''
      operationId: removeWorkersAction
      parameters:
      - name: groupId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    $ref: '#/components/schemas/v1Status'
      requestBody:
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
components:
  schemas:
    v1Status:
      type: object
      properties:
        successful:
          type: boolean
          readOnly: true
    ApplyToTalentPoolOnBehalfResponse:
      type: object
      properties:
        success:
          type: array
          readOnly: true
          items:
            type: string
        failure:
          type: array
          readOnly: true
          items:
            type: string
    ApplyToTalentPoolOnBehalfRequest:
      type: object
      properties:
        userIds:
          type: array
          readOnly: true
          items:
            type: string
        override:
          type: boolean
          readOnly: true
        suppressNotification:
          type: boolean
          readOnly: true
    v1Meta:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
        status_code:
          type: integer
          format: int32
        version:
          type: integer
          format: int32
        requestId:
          type: string
        execution_time:
          type: number
          format: double
        timestamp:
          type: integer
          format: int64
    TalentPool:
      type: object
      properties:
        id:
          type: integer
          format: int64
          readOnly: true
        name:
          type: string
          readOnly: true
        description:
          type: string
          readOnly: true
        members:
          type: integer
          format: int32
          readOnly: true
        active:
          type: boolean
          readOnly: true
        deleted:
          type: boolean
          readOnly: true