# 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.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.corpdev.ai/corpdev.ai-docs/company-search-api/search-by-name-or-domain.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
