NAME

Tomba::Phone - Phone finder and validator for the Tomba.io API

SYNOPSIS

use Tomba::Phone;

my $tomba = Tomba::Phone->new("ta_xxxxx", "ts_xxxxx");
my $phone = $tomba->PhoneFinder({ email => 'm@wordpress.org' });
my $valid = $tomba->PhoneValidator("+14155552671", "US");

DESCRIPTION

Find and validate phone numbers via the Tomba API.

PhoneFinder

my $data = $tomba->PhoneFinder({ email => 'm@wordpress.org' });
my $data = $tomba->PhoneFinder({ domain => 'tomba.io' });
my $data = $tomba->PhoneFinder({ linkedin => 'https://www.linkedin.com/in/alex-maccaw-ab592978' });

Search for phone numbers based on an email, domain, or LinkedIn URL.

See https://docs.tomba.io/api/phone#get-phone-finder

PhoneValidator

my $data = $tomba->PhoneValidator("+14155552671", "US");

Validate a phone number and retrieve its associated information.

See https://docs.tomba.io/api/phone#get-phone-validator

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