pub struct CufinderSDK { /* private fields */ }
Expand description
Main CUFinder SDK
Implementations§
Source§impl CufinderSDK
impl CufinderSDK
Sourcepub fn with_config(config: ClientConfig) -> Result<Self>
pub fn with_config(config: ClientConfig) -> Result<Self>
Create a new SDK instance with custom configuration
Sourcepub async fn cuf(
&self,
company_name: &str,
country_code: &str,
) -> Result<CufResponse>
pub async fn cuf( &self, company_name: &str, country_code: &str, ) -> Result<CufResponse>
CUF - Get company domain from company name
Sourcepub async fn lcuf(&self, company_name: &str) -> Result<LcufResponse>
pub async fn lcuf(&self, company_name: &str) -> Result<LcufResponse>
LCUF - Get LinkedIn URL from company name
Sourcepub async fn dtc(&self, company_website: &str) -> Result<DtcResponse>
pub async fn dtc(&self, company_website: &str) -> Result<DtcResponse>
DTC - Get company name from domain
Sourcepub async fn dte(&self, company_website: &str) -> Result<DteResponse>
pub async fn dte(&self, company_website: &str) -> Result<DteResponse>
DTE - Get company emails from domain
Sourcepub async fn ntp(&self, company_name: &str) -> Result<NtpResponse>
pub async fn ntp(&self, company_name: &str) -> Result<NtpResponse>
NTP - Get company phones from company name
Sourcepub async fn epp(&self, linkedin_url: &str) -> Result<EppResponse>
pub async fn epp(&self, linkedin_url: &str) -> Result<EppResponse>
EPP - Enrich LinkedIn profile
Sourcepub async fn rel(&self, email: &str) -> Result<RelResponse>
pub async fn rel(&self, email: &str) -> Result<RelResponse>
REL - Reverse email lookup
Sourcepub async fn fwe(&self, linkedin_url: &str) -> Result<FweResponse>
pub async fn fwe(&self, linkedin_url: &str) -> Result<FweResponse>
FWE - Get email from profile
Sourcepub async fn tep(&self, full_name: &str, company: &str) -> Result<TepResponse>
pub async fn tep(&self, full_name: &str, company: &str) -> Result<TepResponse>
TEP - Enrich person information
Sourcepub async fn fcl(&self, query: &str) -> Result<FclResponse>
pub async fn fcl(&self, query: &str) -> Result<FclResponse>
FCL - Get company lookalikes
Sourcepub async fn elf(&self, query: &str) -> Result<ElfResponse>
pub async fn elf(&self, query: &str) -> Result<ElfResponse>
ELF - Get company fundraising information
Sourcepub async fn car(&self, query: &str) -> Result<CarResponse>
pub async fn car(&self, query: &str) -> Result<CarResponse>
CAR - Get company revenue
Sourcepub async fn fcc(&self, query: &str) -> Result<FccResponse>
pub async fn fcc(&self, query: &str) -> Result<FccResponse>
FCC - Get company subsidiaries
Sourcepub async fn fts(&self, query: &str) -> Result<FtsResponse>
pub async fn fts(&self, query: &str) -> Result<FtsResponse>
FTS - Get company tech stack
Sourcepub async fn enc(&self, query: &str) -> Result<EncResponse>
pub async fn enc(&self, query: &str) -> Result<EncResponse>
ENC - Enrich company information
Sourcepub async fn cec(&self, query: &str) -> Result<CecResponse>
pub async fn cec(&self, query: &str) -> Result<CecResponse>
CEC - Get company employee countries
Sourcepub async fn clo(&self, query: &str) -> Result<CloResponse>
pub async fn clo(&self, query: &str) -> Result<CloResponse>
CLO - Get company locations
Sourcepub async fn cse(&self, params: CseParams) -> Result<CseResponse>
pub async fn cse(&self, params: CseParams) -> Result<CseResponse>
CSE - Search companies
Sourcepub async fn pse(&self, params: PseParams) -> Result<PseResponse>
pub async fn pse(&self, params: PseParams) -> Result<PseResponse>
PSE - Search people
Sourcepub async fn lbs(&self, params: LbsParams) -> Result<LbsResponse>
pub async fn lbs(&self, params: LbsParams) -> Result<LbsResponse>
LBS - Search local businesses
Auto Trait Implementations§
impl Freeze for CufinderSDK
impl !RefUnwindSafe for CufinderSDK
impl Send for CufinderSDK
impl Sync for CufinderSDK
impl Unpin for CufinderSDK
impl !UnwindSafe for CufinderSDK
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more