logo
Introduction
API Reference
Authentication
Enrichment
Enrich
Search
Lookalike
Autocomplete
Queries
Classifications
Credits
Errors
powered by zuplo
DocsPricingSign in

API Reference

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.

BASE URL
https://api.mirrasearch.com

Authentication

Sign into view and manage your API credentials

Enrichment

ENDPOINTS
GET/v1/companies/domain/:domain

Search

ENDPOINTS
POST/v1/search/similar
GET/v1/search/autocomplete

Enrich

The Enrichment Company API allows you to look up a company by their domain.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Path Parameters

domain

required, string

The domain name of the company to retrieve (e.g. "tesla.com").

GET
/v1/companies/domain/:domain
1

Lookalike

Find companies similar to one or more reference companies based on multiple factors including industry, size, technology stack, and business model.

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Request Body

domains

required, array of strings, maximum of 5 items

List of company domains to find similar companies for

filters

optional, object

Filter criteria for similar companies

limit

optional, integer, default: 10, maximum value of 100, minimum value of 1

Maximum number of results to return

POST
/v1/search/similar
1
EXAMPLE BODY
{
  "domains": [
    "chattermill.com"
  ],
  "filters": {
    "country": [
      "United States"
    ],
    "company_size": [
      "11-50"
    ]
  }
}

Autocomplete

Search for companies by name, returning partial matches for autocomplete functionality

Protected by API Key

Headers

Authorization

required, string

The Authorization header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE.

Query Parameters

query

required, string, minimum length of 1

The search query string to find matching company names

GET
/v1/search/autocomplete
1