Organization Search

Find organizations similar to existing known organizations or based on custom descriptions.

Search Types

1. Similar Organizations by ID

Endpoint:

GET /search/organizations/{organization_id}/similar

Find organizations similar to a specific organization.

Parameters:

  • organization_id(int): The id of the known organization

  • Standard search filters (location, size, funding, etc.)

How it works:

Returns semantically similar organizations with similar business scope, business models, customers and characteristics

2. Similar Organizations by Description

Endpoint:

GET /search/organizations/similar

Search for companies based on a custom business description.

Parameters:

  • description (string): Company description to match against

  • Standard search filters (location, size, funding, etc.)

How it works:

Returns semantically similar organizations to the description provided.

3. Organizations by Customer Base

Endpoint:

GET /search/organizations/similar-customers

Find companies serving similar target audiences or customer segments.

Parameters:

  • organization_customer (string): Target customer description

  • Standard search filters (location, size, funding, etc.)

How it works:

Returns organizations with semantically similar organization customer bases to the organization customer description provided

Organization Search Filters

Filter Category

Parameters

Description

Location

country_keys, region_keys

Filter by country codes (ISO 3166-1) and regions

Company Size

employee_count_range_min, employee_count_range_max

Filter by employee count ranges

Company Age

year_founded_min, year_founded_max

Filter by founding year

Business Type

product_categories

Filter by product categories: goods, services, software, hardware

Funding Stage

latest_funding_round

Filter by latest funding round stage

Funding Timeline

raised_date_from, raised_date_to

Filter by funding date ranges

Location Type

is_headquarters

Focus on headquarters locations (default: true)

Organization Response Data

Each organization result includes:

  • Core Details: Name, description, domain, logo

  • Company Metrics: Employee count, founding date, funding information

  • Location Data: Headquarters address with country/region details

  • Contact Information: Website, social media profiles, contact details

  • Similarity Scores: Cosine distance measurements for relevance ranking

Filtering Strategy: Combine multiple filters for precise targeting. For example, search for SaaS companies in specific regions with recent Series A funding. ::