Location
Location entities offer precise and structured geographical information
Request Header
Request Structure
Request Samples
import requests
url = "https://api.fusionbase.com/api/v2/entities/location/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/location/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?
