Person
Person entities are structured data derived from official business registry resources, such as the German "Handelsregister," providing detailed and authenticated information about individuals.
Request Headers
Request Structure
Request Sample
import requests
url = "https://api.fusionbase.com/api/v2/entities/person/get/FB_ENTITY_ID"
headers = {
"X-API-KEY": "<YOUR API KEY>",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
print(response.json())const axios = require('axios');
const url = "https://api.fusionbase.com/api/v2/entities/person/get/FB_ENTITY_ID";
const headers = {
"X-API-KEY": "<YOUR API KEY>",
"Content-Type": "application/json"
};
axios.get(url, { headers })
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error('Error:', error);
});Response Structure
Response Sample
Error Handling
Notes
Last updated
Was this helpful?
