siddhartharya commited on
Commit
b63d371
·
verified ·
1 Parent(s): bfda8f6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -2
app.py CHANGED
@@ -24,8 +24,22 @@ def fetch_linkedin_data(linkedin_url):
24
 
25
  # Function to fetch company information using Firecrawl API
26
  def fetch_company_info(company_url):
27
- headers = {'Authorization': f'Bearer {FIRECRAWL_API_KEY}'}
28
- response = requests.get(f"https://api.firecrawl.com/v1/scrape?url={company_url}", headers=headers)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  if response.status_code == 200:
30
  return response.json()
31
  else:
 
24
 
25
  # Function to fetch company information using Firecrawl API
26
  def fetch_company_info(company_url):
27
+ api_key = os.getenv("FIRECRAWL_API_KEY")
28
+ headers = {
29
+ 'Authorization': f'Bearer {api_key}',
30
+ 'Content-Type': 'application/json'
31
+ }
32
+ api_endpoint = 'https://api.firecrawl.dev/v1/crawl'
33
+
34
+ data = {
35
+ "url": company_url,
36
+ "limit": 100,
37
+ "scrapeOptions": {
38
+ "formats": ["markdown", "html"]
39
+ }
40
+ }
41
+
42
+ response = requests.post(api_endpoint, json=data, headers=headers)
43
  if response.status_code == 200:
44
  return response.json()
45
  else: