Phenom Onboarding API

Search candidates and retrieve onboarding information and attachments.

Operations 1

POST /candidates-api/onboarding/v1/candidates/search Search onboarding candidates #

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/phenom-onboarding-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

phenom-onboarding-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Phenom Talent Experience Platform Applicants Onboarding API
  version: '1.0'
  description: 'Phenom platform APIs for talent acquisition and experience management: job sync, candidate management, onboarding, applications and applicants, resume/JD parsing, SCIM-based user management, candidate tags, and AI skills prediction.'
  contact:
    name: Phenom Developer Portal
    url: https://developer.phenom.com/
  termsOfService: https://www.phenom.com/terms--conditions
servers:
- url: https://api-qa.phenompro.com
  description: QA / sandbox environment (documented base host)
security:
- bearerAuth: []
tags:
- name: Onboarding
  description: Search candidates and retrieve onboarding information and attachments.
paths:
  /candidates-api/onboarding/v1/candidates/search:
    post:
      operationId: searchOnboardingCandidates
      tags:
      - Onboarding
      summary: Search onboarding candidates
      description: Search onboarding candidates by firstName, lastName and/or emailId with pagination.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CandidateSearchRequest'
      responses:
        '200':
          description: Candidates matching the filters (may be empty).
        4XX:
          description: Client error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      description: Standard error response returned for all 4xx and 5xx responses.
      properties:
        status:
          type: integer
          description: HTTP status code of the error.
        message:
          type: string
          description: Human-readable description of the error.
    CandidateSearchRequest:
      type: object
      required:
      - filters
      properties:
        filters:
          type: object
          description: At least one non-blank filter is required; filters are combined with AND (exact, case-insensitive).
          properties:
            firstName:
              type: string
            lastName:
              type: string
            emailId:
              type: string
        from:
          type: integer
          description: Zero-based offset to start from.
        size:
          type: integer
          description: Max candidates to return.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Bearer token supplied in the Authorization header. Documented on every operation as `Authorization: <token>`.'