Documentation Index
Fetch the complete documentation index at: https://docs.hirempire.com/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request Body
The domain of the company (e.g., example.com)
The URL to the company’s logo image
curl --location --request POST 'https://api.hirempire.com/v1/create-company' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--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
Indicates if the company was created successfully
The unique identifier of the newly created company
{
"success": true,
"company_id": "xyz456abc123"
}