Skip to content

carvedai/exfunc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 

Repository files navigation

Exfunc

What is Exfunc?

Exfunc is an API service for performing tasks on the web. With one line of code, you can fetch business reviews on Yelp, search properties on Zillow, or extract contact information from any company website. We take care of the rest from provisioning infrastructure to scaling browser automations. Check out our documentation!

How to use it?

Check out the following resources to get started:

API Key

To use the API, you need to sign up on Exfunc and get an API key.

Using Python SDK

Installation

pip install exfunc

Search People on LinkedIn

import os
from exfunc import Exfunc

exfunc = Exfunc(api_key=os.getenv("EXFUNC_API_KEY", ""))

response = exfunc.linkedin.search_people(request={
  "locations": ["United States"],
  "seniorities": ["c_suite"],
  "company_sizes": ["51-200"],
})
print(response)

Using Node SDK

Installation

npm add exfunc

Get Tweet

import { Exfunc } from "exfunc";

const exfunc = new Exfunc({
  apiKey: process.env["EXFUNC_API_KEY"] ?? "",
});

async function run() {
  const result = await exfunc.twitter.getTweet({
    tweetId: "<id>",
  });

  // Handle the result
  console.log(result);
}

run();

Demo

Exfunc.Demo.Nov.2024.mp4

Releases

No releases published

Packages

 
 
 

Contributors