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. Personal Information

getPersonInformation

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

getPersonInformation

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

Needed headers: Content-type: application/json This endpoint allows you to get general person information such as: * Personal code * First name and last name * Previous first name and last name (if exist) * Death date (if exists) * Personal address Example Curl request: curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/getPersonInformation' --data '{ "token": "0c4386e0983540c97u8930de8570820f967827", "code": "12345678900", "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

Personal code.

{
    "personal_code": "12345678900",
    "last_name": "Karllson",
    "first_name": "Karl",
    "ex_last_name": "Blumberg",
    "ex_first_name": "Karl",
    "death_date": null,
    "address": "Harju maakond, Tallinn, Lasnamäe linnaosa, Oksa 1-15"
}
{
    "error": "error",
    "code": 400,
    "message": "Code is mandatory"
}
{
    "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": 404,
    "message": "No such person"
}
{
    "error": "error",
    "code": 409,
    "message": "Something went wrong"
}
{
    "error": "error",
    "code": 423,
    "message": "Locked. Wait for previous request to complete"
}
{
    "error": "error",
    "code": 500,
    "message": "Internal Server Error"
}
PreviousPerson credit reportNextPerson code validator

Last updated 4 years ago

Was this helpful?