getSalaryInformation

TEST request - https://in.bisnode.ee/rest_dev/getSalaryInformation

getSalaryInformation

POST https://in.bisnode.ee/rest/getSalaryInformation

Needed Headers: Content-type: application/json This endpoint allows you to get average salary paid in company and its comparison to the industry for every year with analysis such as: * Min salary * Salary slices * Max salary * Industrial average salary * Industrial median salary * Step * Total companies Example Curl request: curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/getSalaryInformation' --data '{ "token": "0c725874e737c8195de547f67692d8b976726561", "reg_code": "10117826", "country": "EST", "language": "en" }'

Query Parameters

NameTypeDescription

language

string

2-letter language code. Must be "en", "et" or "ru". Default is "en".

token

string

Your 'access token' (API key).

reg_code

string

Company registration number.

country

string

3-letter country code "EST". Default is "EST".

[
    {
        "annual_year": 2017,
        "company_avg_salary": 1377,
        "analysis": {
            "min_salary": 175,
            "slice1_salary": 787,
            "slice2_salary": 1615,
            "max_salary": 4049,
            "industrial_avg_salary": 2112,
            "industrial_median_salary": 1021,
            "step": 8.7,
            "total_companies": 26
        }
    },
    {
        "annual_year": 2016,
        "company_avg_salary": 1084,
        "analysis": []
    },
    {
        "annual_year": 2015,
        "company_avg_salary": 1037,
        "analysis": []
    }
]

Last updated