Download the PHP package bdm/datafinder without Composer
On this page you can find all versions of the php package bdm/datafinder. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bdm/datafinder
More information about bdm/datafinder
Files in bdm/datafinder
Package datafinder
Short Description Official PHP/Laravel SDK for the BDM DataFinder API
License MIT
Informations about the package datafinder
BDM DataFinder PHP/Laravel SDK
Official PHP SDK for the BDM DataFinder API.
Installation
Configuration
Publish the config file:
Add your API key to .env:
Usage
Find a Business
Find Similar / Competitors
Extract Products / Services
Validate a Business (KYC)
Bulk Enrichment
Reverse Lookups
Error Handling
Without Laravel (Plain PHP)
bdm-datafinder-sdk/ ├── composer.json ├── README.md ├── config/ │ └── datafinder.php └── src/ ├── DataFinderClient.php ├── DataFinderServiceProvider.php ├── Facades/ │ └── DataFinder.php ├── Resources/ │ ├── BusinessResource.php │ ├── BulkResource.php │ └── ValidationResource.php ├── Responses/ │ ├── BaseResponse.php │ ├── BusinessResponse.php │ ├── BulkJobResponse.php │ ├── BulkStatusResponse.php │ ├── TypeSearchResponse.php │ ├── ProductsResponse.php │ ├── EmployeesResponse.php │ ├── SimilarResponse.php │ ├── PhoneResponse.php │ ├── EmailDomainResponse.php │ ├── PersonResponse.php │ ├── AddressResponse.php │ ├── VatResponse.php │ └── ValidationResponse.php └── Exceptions/ ├── DataFinderException.php ├── AuthenticationException.php └── RateLimitException.php