Comprehensive API reference for Hello World Systems. Build powerful integrations with our RESTful APIs and real-time webhooks.
https://api.helloworldsystems.comCurrent API version: v1
All API responses are in JSON format with UTF-8 encoding.
API requests are limited to 1000 requests per hour per API key.
Ready-to-use code examples in multiple programming languages to help you integrate quickly.
curl -X GET "https://api.helloworldsystems.com/api/v1/cemetery/records?limit=10" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"const response = await fetch('https://api.helloworldsystems.com/api/v1/cemetery/records?limit=10', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const data = await response.json();import requests
headers = {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
response = requests.get(
'https://api.helloworldsystems.com/api/v1/cemetery/records',
headers=headers,
params={'limit': 10}
)
data = response.json()