Developers
  • Dun & Bradstreet Estonia API
  • Test environment
  • Pricing
  • Contact
  • General information
    • searchCompany
    • getCompanyInformation
    • getContacts
    • getAaaRatingWithHistory
    • getCompanyUpdateDate
  • Negative information
    • getTaxArrears
    • getPublicAnnouncements
    • getDebtCollectionCases
  • Persons in company
    • getManagementBoard
    • getShareholdersAndOtherRoles
    • getBeneficialOwner
  • Financial information
    • listAnnualReport
    • getAnnualReport
    • getFinancialInformation
    • getFinancialStatements
    • getTaxInformation
    • getSalaryInformation
  • REAL ESTATE
    • getImmovables
  • Credit reports
    • Company credit report
    • Person credit report
  • Personal Information
    • getPersonInformation
  • TOOLS
    • Person code validator
  • International data
    • BBC API
  • User
    • getProfile
    • getLimits
Powered by GitBook
On this page

Was this helpful?

  1. REAL ESTATE

getImmovables

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

getImmovables

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

Needed Headers: Content-type: application/json This endpoint allows you to get real estate information of a company or a person such as: * Type * Cadastral code * Address * Area in m2 * Registry code * Purpose Example Curl request: curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/getImmovables' --data '{ "token": "0c725874e737c8195de547f67692d8b976726561", "code": "10117826", "language": "en" }'

Query Parameters

Name
Type
Description

language

string

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

token

string

Your 'access token' (API key).

code

string

Company registration number or Personal ID code.

    {
        "immovable_no": "111701",
        "type": "Kinnisasi",
        "cadastral_code": "11111:111:11111",
        "address": "ABC tn 1, Haabersti linnaosa, Tallinn, Harju maakond",
        "area": "1111,0 m2",
        "apt_no": "*",
        "registry_code_of_apartment_association": "",
        "purpose": "\u00c4rimaa 100%"
    }
{
    "error": "error",
    "code": 400,
    "message": "Code is missing"
}
{
    "error": "error",
    "code": 401,
    "message": "Token is wrong"
}
{
    "error": "error",
    "code": 402,
    "message": "Monthly requests limit exceeded"
}
{
    "error": "error",
    "code": 403,
    "message": "This request is not allowed for you"
}
{
    "error": "error",
    "code": 409,
    "message": "Something went wrong"
}
{
    "error": "error",
    "code": 422,
    "message": "Schema validation error"
}
{
    "error": "error",
    "code": 423,
    "message": "Locked. Wait for previous request to complete"
}
{
    "error": "error",
    "code": 500,
    "message": "Internal Server Error"
}
PreviousgetSalaryInformationNextCompany credit report

Last updated 4 years ago

Was this helpful?