NAME

Tomba::Reveal - Companies search (Reveal) for the Tomba.io API

SYNOPSIS

use Tomba::Reveal;

my $tomba = Tomba::Reveal->new("ta_xxxxx", "ts_xxxxx");
my $companies = $tomba->CompaniesSearch({ query => "Real Estate Agency in Europe", page => 1 });

DESCRIPTION

Search for companies using natural language queries or structured filters.

CompaniesSearch

my $data = $tomba->CompaniesSearch({ query => "Real Estate Agency in Europe", page => 1 });
my $data = $tomba->CompaniesSearch({
    filters => {
        industry => { include => ["technology"] },
        location_country => { include => ["US"] },
    },
    page => 1,
});

Search for companies using natural language queries or structured filters.

See https://docs.tomba.io/api/reveal#post-reveal-search

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