---
title: "Create a new job post"
method: POST
path: "/jobs"
tags: ["Job Posts"]
---

# Create a new job post

`POST /jobs`

Creates a new job post with the provided details.

## Request body

- CreateJobPost
  - `title` string
  - `salary_range` string
  - `job_type` string
  - `location` string
  - `deadline` string
  - `job_mode` string
  - `experience_level` string
  - `benefits` string
  - `company_name` string
  - `description` string
  - `key_responsibilities` string
  - `qualifications` string

## Response `201`

Job post created successfully

- JobPostResponse
  - `status` string
  - `status_code` integer
  - `message` string
  - `data` JobPost
    - `id` string
    - `title` string
    - `salary_range` string
    - `job_type` string
    - `location` string
    - `deadline` string, date-time
    - `job_mode` string
    - `experience_level` string
    - `how_to_apply` string
    - `benefits` string
    - `company_name` string
    - `description` string
    - `key_responsibilities` string
    - `qualifications` string
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `400` — Invalid input
- `500` — Failed to create job post

---

[API](https://skmtc.net/hngprojects/apis/kimiko-golang-swagger.md) · [All operations](https://skmtc.net/hngprojects/apis/kimiko-golang-swagger/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/hngprojects/kimiko-golang-swagger/revisions/2d1d3ed96bb9/schema)
