Justworks Company API

Read company-level data from the Justworks Partner API including company identity, departments, offices, bank account on file (masked), verified business information, custom-field definitions, and the jurisdictions in which the company operates.

Operations 5

GET /v1/company Justworks Get Company #
GET /v1/company/bank-account Justworks Get Company Bank Account #
GET /v1/company/business-info Justworks Get Company Business Info #
GET /v1/company/custom-fields Justworks List Company Custom Fields #
GET /v1/company/jurisdictions Justworks List Company Jurisdictions #

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/justworks-company-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

justworks-company-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Justworks Company API
  description: 'Read company-level data from the Justworks Partner API including

    company identity, bank account on file, verified business information,

    custom field definitions, and operating jurisdictions.

    '
  version: '2026-05-25'
  contact:
    name: Justworks Partner Support
    url: https://public-api.justworks.com/v1/docs
servers:
- url: https://public-api.justworks.com
  description: Production Server
security:
- OAuth2: []
tags:
- name: Company
  description: Read access to company-level Justworks data
paths:
  /v1/company:
    get:
      summary: Justworks Get Company
      description: Retrieve company identity, departments, offices, and country data.
      operationId: getCompany
      tags:
      - Company
      responses:
        '200':
          description: Company record
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Company'
  /v1/company/bank-account:
    get:
      summary: Justworks Get Company Bank Account
      description: Retrieve the company bank account on file (masked).
      operationId: getCompanyBankAccount
      tags:
      - Company
      responses:
        '200':
          description: Bank account on file
          content:
            application/json:
              schema:
                type: object
                properties:
                  bank_name:
                    type: string
                  account_type:
                    type: string
                  account_number_tail:
                    type: string
                  routing_number:
                    type: string
  /v1/company/business-info:
    get:
      summary: Justworks Get Company Business Info
      description: Retrieve verified business identifiers and officer information.
      operationId: getCompanyBusinessInfo
      tags:
      - Company
      responses:
        '200':
          description: Business info
          content:
            application/json:
              schema:
                type: object
                properties:
                  entity_identifiers:
                    type: array
                    items:
                      type: object
                      properties:
                        file_number:
                          type: string
                        issue_date:
                          type: string
                          format: date
                        state:
                          type: string
                  officers:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                        titles:
                          type: array
                          items:
                            type: string
  /v1/company/custom-fields:
    get:
      summary: Justworks List Company Custom Fields
      description: List company-defined custom field definitions.
      operationId: listCompanyCustomFields
      tags:
      - Company
      responses:
        '200':
          description: Custom field definitions
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/CustomFieldDefinition'
  /v1/company/jurisdictions:
    get:
      summary: Justworks List Company Jurisdictions
      description: List jurisdictions in which the company operates.
      operationId: listCompanyJurisdictions
      tags:
      - Company
      responses:
        '200':
          description: Jurisdictions
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      type: object
                      properties:
                        zone_code:
                          type: string
components:
  schemas:
    CustomFieldDefinition:
      type: object
      properties:
        id:
          type: string
        label:
          type: string
        type:
          type: string
        options:
          type: array
          items:
            type: string
        cardinality:
          type: string
        category:
          type: string
    Company:
      type: object
      properties:
        id:
          type: string
        tax_id:
          type: string
        display_name:
          type: string
        legal_name:
          type: string
        addresses:
          type: array
          items:
            type: object
        departments:
          type: array
          items:
            type: object
        offices:
          type: array
          items:
            type: object
        phones:
          type: array
          items:
            type: object
        country_data:
          type: object
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://secure.justworks.com/oauth/authorize
          tokenUrl: https://public-api.justworks.com/oauth/token
          refreshUrl: https://public-api.justworks.com/oauth/token
          scopes:
            company.basic:read: Read basic company data
            company.detail:read: Read detailed company data
            company.bank_account:read: Read company bank account on file