---
title: "Resume Search"
method: POST
path: "/searchservice/resumesearch"
tags: ["Endpoints"]
---

# Resume Search

`POST /searchservice/resumesearch`

Searches stored resumes using various filters and matching criteria.

## Request body

- ResumeSearchRequestJSON
  - `searchCriteria` object
    - `resume` object, required
      - `binaryData` string, required — Base64 encoded binary resume data.
      - `extension` string — The document extension (e.g., txt, doc, docx, pdf).
    - `additionalFilters` object, required
      - `maximumDocumentCount` integer, required — Maximum number of documents to return.
    - `instanceType` 'SPECTRUM' | 'LENSSEARCH', required — Instance type. Eg. SPECTRUM.
    - `locale` 'en_us', required — Locale of the instance.
    - `vendor` string — Name of the vendor in which the documents are stored.

## Response `200`

OK

- ResumeSearchResponseJSON
  - `status` boolean
  - `statusCode` string
  - `requestId` string, uuid
  - `timeStamp` string, date-time
  - `responseData` object
    - `vendorName` string
    - `locale` string
    - `instanceType` 'SPECTRUM' | 'LENSSEARCH'
    - `resultsCount` integer
    - `offset` integer
    - `maxDocumentCount` integer
    - `minimumScore` number
    - `orderBy` string
    - `sortDirection` 'ASC' | 'DESC'
    - `candidates` object[]
      - `resumeId` string
      - `name` string
      - `score` number
      - `yrsExp` number
      - `employmentHistory` object[]
        - `jobTitle` string
        - `employer` string
        - `start` string
        - `end` string
      - `educationHistory` object[]
        - `degree` string
        - `major` string
        - `end` string
      - `locationHistory` object[]
        - `city` string
        - `state` string
      - `matchExplanation` object
        - `matched` string
        - `total` string
        - `models` object[]
          - `name` string[]
          - `value` string[]
    - `totalFound` integer

---

[API](https://skmtc.net/lightcast/apis/alumni-pathways-2-0.md) · [All operations](https://skmtc.net/lightcast/apis/alumni-pathways-2-0/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lightcast/alumni-pathways-2-0/versions/fc66b9877391/schema)
