Authentication

To authenticate your requests, include your API key in the request headers.
  1. Obtain Your API Key:
    • Log in to your HarvestAPI account.
    • Navigate to the API keys Dashboard.
    • Create new API key.
  2. Include API Key in Request Headers:
    • For each API request, include the following header:
      X-API-Key: <your-api-key>
      

Making API Requests

All API requests are made to the following base URL: https://api.harvest-api.com For example, company search by keyword
curl --request GET \
  --url https://api.harvest-api.com/linkedin/company-search?search=Google \
  --header 'X-API-Key: <api-key>'

Next Steps

Check out the API Reference for detailed information on each API endpoint.