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!
Check out the following resources to get started:
- API: Documentation
- SDKs: Python, Typescript
- Want an SDK or Integration? Let us know by opening an issue.
To use the API, you need to sign up on Exfunc and get an API key.
pip install exfuncimport 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)npm add exfuncimport { 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();