@@ -35,7 +35,7 @@ client = Cufinder('your-api-key-here', timeout=60)
3535
3636## API Reference
3737
38- This SDK covers all 20 Cufinder API (v2) endpoints:
38+ This SDK covers all 28 Cufinder API (v2) endpoints:
3939
4040- ** CUF** - [ Company Name to Domain] ( https://apidoc.cufinder.io/apis/company-name-to-domain )
4141- ** LCUF** - [ LinkedIn Company URL Finder] ( https://apidoc.cufinder.io/apis/company-linkedin-url-finder )
@@ -57,6 +57,14 @@ This SDK covers all 20 Cufinder API (v2) endpoints:
5757- ** CSE** - [ Company Search] ( https://apidoc.cufinder.io/apis/company-search )
5858- ** PSE** - [ Person Search] ( https://apidoc.cufinder.io/apis/person-search )
5959- ** LBS** - [ Local Business Search (Google Maps Search API)] ( https://apidoc.cufinder.io/apis/local-business-search-google-maps-search-api )
60+ - ** BCD** - [ B2B Customers Finder] ( https://apidoc.cufinder.io/apis/b2b-customers-finder )
61+ - ** CCP** - [ Company Career Page Finder] ( https://apidoc.cufinder.io/apis/company-career-page-finder )
62+ - ** ISC** - [ Company Saas Checker] ( https://apidoc.cufinder.io/apis/company-saas-checker )
63+ - ** CBC** - [ Company B2B or B2C Checker] ( https://apidoc.cufinder.io/apis/company-b2b-or-b2c-checker )
64+ - ** CSC** - [ Company Mission Statement] ( https://apidoc.cufinder.io/apis/company-mission-statement )
65+ - ** CSN** - [ Company Snapshot] ( https://apidoc.cufinder.io/apis/company-snapshot )
66+ - ** NAO** - [ Phone Number Normalizer] ( https://apidoc.cufinder.io/apis/phone-number-normalizer )
67+ - ** NAA** - [ Address Normalizer] ( https://apidoc.cufinder.io/apis/address-normalizer )
6068
6169
6270** CUF - Company Name to Domain**
@@ -251,6 +259,78 @@ result = client.lbs(
251259print (result)
252260```
253261
262+ ** BCD - B2B Customers Finder**
263+
264+ Returns company's careers page
265+
266+ ``` python
267+ result = client.bcd(' stripe.com' )
268+ print (result)
269+ ```
270+
271+ ** CCP - Company Career Page Finder**
272+
273+ Returns is company SaaS or not
274+
275+ ``` python
276+ result = client.ccp(' stripe.com' )
277+ print (result)
278+ ```
279+
280+ ** ISC - Company Saas Checker**
281+
282+ Returns is company SaaS or not
283+
284+ ``` python
285+ result = client.isc(' stripe.com' )
286+ print (result)
287+ ```
288+
289+ ** CBC - Company B2B or B2C Checker**
290+
291+ Returns company's business type
292+
293+ ``` python
294+ result = client.cbc(' stripe.com' )
295+ print (result)
296+ ```
297+
298+ ** CSC - Company Mission Statement**
299+
300+ Returns company's mission statement
301+
302+ ``` python
303+ result = client.csc(' stripe.com' )
304+ print (result)
305+ ```
306+
307+ ** CSN - Company Snapshot**
308+
309+ Returns company's snapshot information
310+
311+ ``` python
312+ result = client.csn(' stripe.com' )
313+ print (result)
314+ ```
315+
316+ ** NAO - Phone Number Normalizer**
317+
318+ Returns normalized phone
319+
320+ ``` python
321+ result = client.nao(' +18006676389' )
322+ print (result)
323+ ```
324+
325+ ** NAA - Address Normalizer**
326+
327+ Returns normalized address
328+
329+ ``` python
330+ result = client.naa(' 1095 avenue of the Americas, 6th Avenue ny 10036' )
331+ print (result)
332+ ```
333+
254334## Error Handling
255335
256336The SDK provides comprehensive error handling with custom error types:
0 commit comments