For the complete documentation index, see llms.txt. This page is also available as Markdown.

Search by Name or Domain

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

NOTE: This end-point is not enabled by default. Please request access.

Endpoint:

GET /v1/companies/search

Parameters:

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

Response:

[
    {
        "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.

Last updated