Developer Core
API Excellence.
Build custom integrations with the Digital Agency Oman engine. Our REST API allows you to extract leads and verify emails directly into your own stack.
Authentication
All requests must be authenticated with a Bearer Token provided in your dashboard settings.
JavaScript / Node.js
const fetchLeads = async () => {
const response = await fetch('https://api.digitalagencyoman.com/v1/extract', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
niche: 'Real Estate',
location: 'Muscat, Oman'
})
});
const data = await response.json();
console.log(data.leads);
};GET
/v1/extractRetrieve raw Google Maps data for a specific niche and location.
POST
/v1/verifyValidate an array of email addresses against our MX/SMTP engine.