API Documentation
- v1
- API Documentation
- How to Get Your API Tokens
- Authentication
- GETGet Company
- GETQuery Products
- GETGet Product
- POSTCreate Product
- POSTEdit Product
- GETDelete Product
- GETQuery Roles
- GETGet Role
- GETQuery Consultations
- GETGet Consultation
- POSTCreate Consultation
- POSTEdit Consultation
- GETQuery Assignments
- GETGet Assignment
- POSTCreate Assignment
- POSTAssign Assignment
- POSTEdit Assignment
- GETDelete Assignment
- GETQuery Clients
- GETGet Client
- POSTCreate Client
- POSTEdit Client
- GETDelete Client
- GETQuery Personnel
- GETGet Personnel
- POSTCreate Personnel
- POSTEdit Personnel
- GETDelete Personnel
v1
Get Company
Retrieves company information
GET
/
company
/
get
/
{company_slug}
/
curl --request GET \
--url https://api.hierarch.io/v1/company/get/{company_slug}/ \
--header 'token: <api-key>'
{
"slug": "<string>",
"name": "<string>",
"email": "<string>",
"url": "<string>",
"description": "<string>",
"slogan": "<string>",
"country": "<string>",
"address": "<string>",
"state_region": "<string>",
"postcode": "<string>",
"sector": "<string>",
"industry": "<string>",
"currency": "<string>",
"logo": "<string>",
"banner": "<string>",
"thumbnail": "<string>",
"datetime": "<string>",
"skype": "<string>",
"slack": "<string>",
"whatsapp": "<string>",
"msteams": "<string>",
"discord": "<string>",
"linkedin": "<string>",
"github": "<string>",
"facebook": "<string>",
"instagram": "<string>",
"twitter": "<string>",
"pinterest": "<string>",
"business_hour_start": "<string>",
"business_hour_end": "<string>",
"timezone": "<string>",
"sunday": "<string>",
"monday": "<string>",
"tuesday": "<string>",
"wednesday": "<string>",
"thusrday": "<string>",
"friday": "<string>",
"saturday": "<string>"
}
Authorizations
API token provided to your company
Path Parameters
This is your company url
Response
200
application/json
OK Response
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.hierarch.io/v1/company/get/{company_slug}/ \
--header 'token: <api-key>'
{
"slug": "<string>",
"name": "<string>",
"email": "<string>",
"url": "<string>",
"description": "<string>",
"slogan": "<string>",
"country": "<string>",
"address": "<string>",
"state_region": "<string>",
"postcode": "<string>",
"sector": "<string>",
"industry": "<string>",
"currency": "<string>",
"logo": "<string>",
"banner": "<string>",
"thumbnail": "<string>",
"datetime": "<string>",
"skype": "<string>",
"slack": "<string>",
"whatsapp": "<string>",
"msteams": "<string>",
"discord": "<string>",
"linkedin": "<string>",
"github": "<string>",
"facebook": "<string>",
"instagram": "<string>",
"twitter": "<string>",
"pinterest": "<string>",
"business_hour_start": "<string>",
"business_hour_end": "<string>",
"timezone": "<string>",
"sunday": "<string>",
"monday": "<string>",
"tuesday": "<string>",
"wednesday": "<string>",
"thusrday": "<string>",
"friday": "<string>",
"saturday": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.