Authentication

Include your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Base Endpoint

POST api.linkfinderai.com

Available Services

1. Company Name to Website
Find a company's official website from its name
Request Body
{ "type": "company_name_to_website", "input_data": "Tesla" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "company_name_to_website", "input_data": "Tesla" }'
2. Company Name to Phone
Get company contact phone number
Request Body
{ "type": "company_name_to_phone", "input_data": "Tesla" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "company_name_to_phone", "input_data": "Tesla" }'
3. Company Name to Email
Get company contact email address
Request Body
{ "type": "company_name_to_email", "input_data": "Tesla" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "company_name_to_email", "input_data": "Tesla" }'
4. Company Name to Employee Count
Get the total number of employees at a company
Request Body
{ "type": "company_name_to_employee_count", "input_data": "Tesla" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "company_name_to_employee_count", "input_data": "Tesla" }'
5. Company Name to LinkedIn URL
Find company's LinkedIn profile URL
Request Body
{ "type": "company_name_to_linkedin_url", "input_data": "Tesla" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "company_name_to_linkedin_url", "input_data": "Tesla" }'
6. LinkedIn Company URL to Data Scraping
Extract detailed company data from LinkedIn company pages
Request Body
{ "type": "linkedin_company_to_linkedin_info", "input_data": "https://linkedin.com/company/tesla" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "linkedin_company_to_linkedin_info", "input_data": "https://linkedin.com/company/tesla" }'
7. LinkedIn Company URL to Employee Count
Get the total number of employees from a LinkedIn company page
Request Body
{ "type": "linkedin_company_to_employee_count", "input_data": "https://linkedin.com/company/tesla" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "linkedin_company_to_employee_count", "input_data": "https://linkedin.com/company/tesla" }'
8. LinkedIn Company URL to Employees
Extract list of employees from a LinkedIn company page
Request Body
{ "type": "linkedin_company_to_employees", "input_data": "https://linkedin.com/company/tesla" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "linkedin_company_to_employees", "input_data": "https://linkedin.com/company/tesla" }'
9. LinkedIn Profile URL to Data Scraping
Extract comprehensive profile data from individual LinkedIn profiles
Request Body
{ "type": "linkedin_profile_to_linkedin_info", "input_data": "https://linkedin.com/in/john-doe" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "linkedin_profile_to_linkedin_info", "input_data": "https://linkedin.com/in/john-doe" }'
10. Lead Full Name to LinkedIn Profile URL
Find LinkedIn Profile URL from lead full name and company name
Request Body
{ "type": "lead_full_name_to_linkedin_url", "input_data": "Bill Gates Microsoft" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "lead_full_name_to_linkedin_url", "input_data": "Bill Gates Microsoft" }'
11. LinkedIn Post URL to Reactions
Scrape the people who reacted to a LinkedIn post
Request Body
{ "type": "linkedin_post_to_reactions", "input_data": "https://www.linkedin.com/feed/update/urn:li:activity:1234567890" }
Curl Example
curl -X POST "api.linkfinderai.com" \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{ "type": "linkedin_post_to_reactions", "input_data": "https://www.linkedin.com/feed/update/urn:li:activity:1234567890" }'

Response Format

Success Response

{ "result": "tesla.com", "status": "success" }

Error Response

{ "result": null, "status": "error", "message": "Company not found" }