The Mirrasearch API is built on REST principles. It offers predictable, resource-oriented URLs and uses standard HTTP protocols. The API accepts JSON-encoded request bodies, returns JSON-encoded responses, and implements standard HTTP response codes and authentication.
https://api.mirrasearch.com
The Enrichment Company API allows you to look up a company by their domain.
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
domain
The domain name of the company to retrieve (e.g. "tesla.com").
1
Find companies similar to one or more reference companies based on multiple factors including industry, size, technology stack, and business model.
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
domains
List of company domains to find similar companies for
filters
Filter criteria for similar companies
limit
Maximum number of results to return
1
{
"domains": [
"chattermill.com"
],
"filters": {
"country": [
"United States"
],
"company_size": [
"11-50"
]
}
}
Search for companies by name, returning partial matches for autocomplete functionality
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
query
The search query string to find matching company names
1