Work Market Addressbook API

The Addressbook API from Work Market — 5 operation(s) for addressbook.

Operations 5

POST /v1/employer/addressbook/clients/add Add client #
POST /v1/employer/addressbook/clients/contacts/add Add contact to client #
POST /v1/employer/addressbook/locations/contacts/add Add contact to location #
GET /v1/employer/crm/clients/list List clients #
GET /v1/employer/crm/contacts/list List contacts #

Documentation

Specifications

Schemas & Data

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/work-market-addressbook-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-addressbook-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Employer APIs
  version: v1
  title: Swagger spec for Work Market API v1 Addressbook 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: Addressbook
paths:
  /v1/employer/addressbook/clients/add:
    post:
      tags:
      - Addressbook
      summary: Add client
      description: ''
      operationId: addClient
      parameters:
      - name: company_name
        in: query
        required: false
        schema:
          type: string
      - name: industry_name
        in: query
        required: false
        schema:
          type: string
      - name: customer_id
        in: query
        required: false
        schema:
          type: string
      - name: region
        in: query
        required: false
        schema:
          type: string
      - name: division
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    $ref: '#/components/schemas/ClientCompanyId'
  /v1/employer/addressbook/clients/contacts/add:
    post:
      tags:
      - Addressbook
      summary: Add contact to client
      description: ''
      operationId: addClientContact
      parameters:
      - name: client_id
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: first_name
        in: query
        required: false
        schema:
          type: string
      - name: last_name
        in: query
        required: false
        schema:
          type: string
      - name: title
        in: query
        required: false
        schema:
          type: string
      - name: manager
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    $ref: '#/components/schemas/ClientContactId'
  /v1/employer/addressbook/locations/contacts/add:
    post:
      tags:
      - Addressbook
      summary: Add contact to location
      description: ''
      operationId: addLocationContact
      parameters:
      - name: location_id
        in: query
        required: false
        schema:
          type: integer
          format: int64
      - name: first_name
        in: query
        required: false
        schema:
          type: string
      - name: last_name
        in: query
        required: false
        schema:
          type: string
      - name: title
        in: query
        required: false
        schema:
          type: string
      - name: manager
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    $ref: '#/components/schemas/ClientContactId'
  /v1/employer/crm/clients/list:
    get:
      tags:
      - Addressbook
      summary: List clients
      description: ''
      operationId: listClientsAction
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    type: array
                    items:
                      $ref: '#/components/schemas/Client'
  /v1/employer/crm/contacts/list:
    get:
      tags:
      - Addressbook
      summary: List contacts
      description: ''
      operationId: listContactsAction
      parameters:
      - name: client_id
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  meta:
                    $ref: '#/components/schemas/v1Meta'
                  response:
                    type: array
                    items:
                      $ref: '#/components/schemas/Contact'
components:
  schemas:
    Contact:
      type: object
      properties:
        id:
          type: integer
          format: int64
          readOnly: true
        name:
          type: string
          readOnly: true
    ClientCompanyId:
      type: object
      properties:
        id:
          type: integer
          format: int64
          readOnly: true
    Client:
      type: object
      properties:
        id:
          type: integer
          format: int64
          readOnly: true
        name:
          type: string
          readOnly: true
        customer_id:
          type: string
          readOnly: true
    ClientContactId:
      type: object
      properties:
        id:
          type: integer
          format: int64
          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