> For the complete documentation index, see [llms.txt](https://docs.corpdev.ai/corpdev.ai-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.corpdev.ai/corpdev.ai-docs/company-search-api/search-by-name-or-domain.md).

# Search by Name or Domain

Use this endpoint to find companies by their name or web domain.

{% hint style="info" %}
NOTE: This end-point is not enabled by default. Please request access.
{% endhint %}

**Endpoint:**

```
GET /v1/companies/search
```

**Parameters:**

* `query` (string): Name or web domain of the target company.

**Response:**

```json
[
    {
        "name": "The New York Times",
        "domain": "nytimes.com",
        "logo": "https://logo.corpdev.ai/nytimes.com"
    },
    {
        "name": "New York Post",
        "domain": "nypost.com",
        "logo": "https://logo.corpdev.ai/nypost.com"
    },
    {
        "name": "New York Magazine",
        "domain": "nymag.com",
        "logo": "https://logo.corpdev.ai/nymag.com"
    }
]
```

#### Special Rate Limit

This endpoint is rate limited to 1,000 requests per minute, making it suitable for auto-complete use cases.
