v1.0 · 14 Endpoints

Getting Started

BDM DataFinder is a business intelligence API that resolves loose business queries into enriched, multi-source data. Built for African markets, available globally.

Base URL

https://bdmdatafinder.com/api/v1

Quick Start

1. Install the PHP SDK
composer require bdm/datafinder
2. Add to .env
BDM_DATAFINDER_API_KEY
=bdm_free_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
BDM_DATAFINDER_BASE_URL
=https://bdmdatafinder.com/api/v1
3. Make your first call
// Find a business
$result = DataFinder::business()
->find('ERA Real Estate', location: 'Cape Town');
echo $result->topName(); // ERA Real Estate
echo $result->topWebsite(); // https://www.era.co.za
echo $result->topConfidence(); // 0.88

All Endpoints

GET /health
POST /find/business
POST /find/by-type
POST /find/products
POST /find/employees
POST /find/similar
POST /find/by-phone
POST /find/by-email-domain
POST /find/by-person
POST /find/by-address
POST /find/by-vat-number
POST /validate/business
POST /bulk/enrich
GET /bulk/status/{jobId}