Hirempire
  1. Companies
Hirempire
  • Get started
  • Jobs
    • Get all jobs
      GET
    • Get a specific job
      GET
    • Add a job
      POST
    • Delete a job
      DELETE
    • Update job status
      PATCH
  • Applicants
    • Get all applicants
      GET
    • Get a specific applicant
      GET
    • Get a specific job’s applicants
      GET
    • Update applicant status
      PATCH
  • Companies
    • Create a Company
      POST
    • Delete a company
      DELETE
  • Organizations
    • Create an Organization
      POST
  • Users
    • Add a Collaborator
      POST
  1. Companies

Create a Company

POST
https://api.hirempire.com/v1/create-company

Request

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.hirempire.com/v1/create-company' \
--header 'Authorization: Bearer YOUR_TOKEN_HERE' \
--header 'Content-Type: application/json' \
--data-raw '{
    "company_name": "Example",
    "company_domain": "example.com",
    "company_logo_url": "https://1000logos.net/wp-content/uploads/2017/02/Apple-Logosu.png"
}'
Response Response Example
{
    "success": true,
    "company_id": "xyz456abc123"
}
Modified at 2025-06-09 18:04:11
Previous
Update applicant status
Next
Delete a company
Built with