Skip to main content
GET
/
job
/
{jobId}
/
applicants
Get all job applicants
curl --request GET \
  --url https://public.api.micro1.ai/job/{jobId}/applicants \
  --header 'x-api-key: <api-key>'
{
  "status": true,
  "message": "Job applicants fetched successfully",
  "data": [
    {
      "job_applicant_id": "123e4567-e89b-12d3-a456-426614174000",
      "job_id": "123e4567-e89b-12d3-a456-426614174000",
      "job_title": "Full Stack Engineer",
      "first_name": "John",
      "last_name": "Doe",
      "email_id": "john.doe@micro1.ai",
      "phone_number": "+1234567890",
      "phone_country_iso_code": "US",
      "resume_url": "https://micro1.ai/resume/h0gqkAcaDJ.pdf",
      "linkedin_url": "https://www.linkedin.com/in/john-doe-1234567890",
      "source_name": "Linkedin",
      "resume_score": 85,
      "parsed_resume_data": {
        "education": [
          {
            "major": "Computer Science",
            "degree": "Bachelor of Science",
            "end_date": "2022-06-30",
            "is_present": false,
            "start_date": "2021-10-01",
            "university_name": "University of California, Los Angeles"
          },
          {
            "major": "Computer Science",
            "degree": "Master of Science",
            "end_date": null,
            "is_present": true,
            "start_date": "2022-09-01",
            "university_name": "University of California, Los Angeles"
          }
        ],
        "experience": [
          {
            "role": "Software Engineer",
            "end_date": null,
            "is_present": true,
            "start_date": "2022-01-01",
            "tech_stack": [
              "React.js",
              "Node.js",
              "Express.js",
              "MongoDB",
              "PostgreSQL",
              "Docker",
              "Kubernetes"
            ],
            "company_name": "micro1",
            "responsibilities": "<ul><li>Developed and maintained web applications using React.js and Node.js.</li><li>Implemented RESTful APIs using Express.js and MongoDB.</li><li>Collaborated with the development team to ensure the software met quality standards.</li><li>Troubleshot test failures and identified root causes.</li><li>Automated manual testing tasks.</li><li>Worked with other engineers to improve the test automation framework.</li><li>Stayed up-to-date on the latest testing technologies.</li></ul>"
          }
        ]
      },
      "date_created": "2021-01-01 00:00:00",
      "date_modified": "2021-01-01 00:00:00",
      "status": "active"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key to access the API

Path Parameters

jobId
string
required

ID of the job

Query Parameters

page
integer

Page number

limit
integer

Number of items per page

keyword
string

Keyword to search for

Response

Successful response

Response for getting all job applicants

status
boolean

Status of the response

Example:

true

message
string

Message of the response

Example:

"Job applicants fetched successfully"

data
Job Applicant · object[]

List of job applicants