GET
https://search.linkd.inc
/
api
/
search
/
companies
curl --request GET \
  --url https://search.linkd.inc/api/search/companies \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": 55,
      "company_name": "Edgewater Markets",
      "company_type": "Privately Held",
      "company_website": "http://www.edgewatermarkets.com",
      "company_website_domain": "edgewatermarkets.com",
      "headquarters": "New York, New York, United States",
      "hq_country": "United States",
      "employee_count_range": "51-200",
      "linkedin_company_description": "Edgewater is a leading trading technology provider...",
      "linkedin_profile_url": "https://www.linkedin.com/company/edgewater-markets",
      "linkedin_logo_url": "https://media.licdn.com/dms/image/example.jpg",
      "criteria": {
        "tech companies": "YES",
        "in New York": "YES",
        "financial industry": "YES"
      }
    }
  ],
  "total": 1,
  "query": "tech companies in New York in the financial industry"
}

Authorizations

Authorization
string
header
required

API key must be provided as a Bearer token in the Authorization header

Query Parameters

query
string
required

The search query string. Examples:

  • Tech companies in California
  • Fintech startups with over 100 employees
  • Manufacturing companies in the automotive industry
  • Healthcare companies with recent funding
  • AI research companies in biotech
limit
integer
default:10

Maximum number of results to return.

Required range: x <= 30
acceptance_threshold
integer
default:85

Minimum match score threshold (0-100). Defaults to 85.

Required range: 0 <= x <= 100

Response

200
application/json

Successful company search operation

The response is of type object.