1. Jobs
CVViZ API Documentation
  • Start here
    • Quickstart
    • Authentication & permissions
  • Guides
    • API concepts
    • Create a job
    • Find candidates and download resumes
    • Pagination & filtering
    • Rate limits & usage
    • Errors & troubleshooting
    • Safe retries & idempotency
  • Jobs
    • Create a job
      POST
    • List jobs
      GET
    • Get a job
      GET
    • Update a job
      PATCH
    • List candidates for a job
      GET
    • List job benchmark resumes
      GET
    • List candidate job offers
      GET
    • Update a candidate application stage
      PATCH
    • Update job status
      PATCH
  • Candidates
    • List candidates
      GET
    • Get a candidate
      GET
    • Update a candidate
      PATCH
    • List applications for a candidate
      GET
    • List candidate events
      GET
    • List candidate documents
      GET
    • Download a candidate resume
      GET
  • Tasks
    • List tasks
    • Create a task
    • Update a task
    • Update task completion
  • Notes & tags
    • List job notes
    • Add a job note
    • List tags for a job
    • Add tags to a job
    • List tags for a candidate
    • Add tags to a candidate
    • List candidate notes
    • Add a candidate note
    • List candidate tags
  • Screening & interviews
    • List job pre-screening questions
    • List candidate screening answers
    • List candidate interview feedback
  • Organization & lookup data
    • List candidate stages for a job
    • Get job creation options
    • List industries
    • List job functions
    • List employer types
    • List client companies
    • List account users
    • List departments
    • List hiring managers
    • List candidate grades
  1. Jobs

Get a job

GET
/jobs/{jobId}
Returns one job when it belongs to the credential's CVViZ account.

Permissions#

jobs.read

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200
application/json
Successful response.
Headers

Bodyapplication/json

🟠400
🟠401
🟠403
🟠404
🟠429
🔴503
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.cvviz.com/v1/jobs/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "data": {
        "id": 901,
        "title": "Senior Backend Engineer",
        "code": "ENG-104",
        "status": 5,
        "statusLabel": "In Progress",
        "approvalStatus": 1,
        "approvalStatusLabel": "Approved",
        "isDraft": false,
        "location": {
            "country": "India",
            "state": "Maharashtra",
            "city": "Pune",
            "isRemote": false
        },
        "jobType": "Full time",
        "experience": {
            "minimum": 2,
            "maximum": 5
        },
        "description": "<p>Build and operate reliable backend services.</p>",
        "qualifications": [
            "Bachelor's degree"
        ],
        "salary": {
            "minimum": 1200000,
            "maximum": 1800000,
            "currency": "INR",
            "interval": "year"
        },
        "createdAt": "2026-08-15T09:30:00.000Z",
        "updatedAt": "2026-08-31T12:45:00.000Z"
    }
}
Previous
List jobs
Next
Update a job
Built with