NAME

Tomba::Enrichment - Clearbit-compatible enrichment APIs for the Tomba.io API

SYNOPSIS

use Tomba::Enrichment;

my $tomba = Tomba::Enrichment->new("ta_xxxxx", "ts_xxxxx");
my $person   = $tomba->PersonFind("m@wordpress.org");
my $company  = $tomba->CompanyFind("tomba.io");
my $combined = $tomba->CombinedFind("m@wordpress.org");

DESCRIPTION

Clearbit-compatible Person, Company, and Combined enrichment APIs.

PersonFind

my $data = $tomba->PersonFind("m@wordpress.org");

Fetch social details tied to an email address (Clearbit-compatible Person API).

See https://docs.tomba.io/api/enrichment#get-people-find

CompanyFind

my $data = $tomba->CompanyFind("tomba.io");

Look up company data via a domain (Clearbit-compatible Company API).

See https://docs.tomba.io/api/enrichment#get-companies-find

CombinedFind

my $data = $tomba->CombinedFind("m@wordpress.org");

Returns both person and company data from an email (Clearbit-compatible Combined API).

See https://docs.tomba.io/api/enrichment#get-combined-find

AUTHOR

Mohamed Ben rebia, <b.mohamed@tomba.io>

COPYRIGHT AND LICENSE

Copyright 2023 Mohamed Benrebia <b.mohamed@tomba.io>

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0