CorpDev.Ai Docs
  • Welcome
  • Basics
    • Basic Company Search
    • Find Companies by Description
    • Company Lists
    • Company Analysis
      • Basic Facts
      • Qualitative Analysis
      • Custom Questions/Data Points
    • Export to Excel and Word
    • Integrations
  • Excel Add-in
    • Introduction & Installation
    • COMPANY Functions
    • DOCUMENT Functions
    • ANALYST Functions
  • API Intro
    • Quick Start
    • Authentication
    • Rate Limits
  • Company Search API
    • Search by Name or Domain
    • Search by Description
  • Company Research API
    • Get Company Facts
    • Get Company Field
    • Ask Company Question
  • Document API
    • Document Index
    • Ask Document Question
    • Extract Document Field
    • Extract Document Text
    • Summarize Document
  • AI Analyst API
    • Ask Question
Powered by GitBook
On this page
  • Endpoint
  • Parameters
  • Example Request
  • Example Response
  • Usage Notes
  1. Company Research API

Ask Company Question

The "Ask Company Question" endpoint allows you to ask specific questions about a company, and the AI will provide an answer based on available public sources. This endpoint is designed to offer flexibility in how detailed or concise the responses should be, based on your needs.

Endpoint

POST /v1/companies/get-answer

Parameters

  • question_prompt (required, string): The specific question you want to ask about the company (e.g., "What products does the company have?").

  • company_name (string): The name of the target company. It’s recommended to use at least the common name (e.g., "Google") rather than the full legal name ("Google LLC") to increase the chances of a successful match.

  • company_domain (string): The web domain of the target company (e.g., "google.com"). This helps to uniquely identify the company.

Note: As with the "Get Company Field" endpoint, both company_name and web_domain must be provided for the most accurate results.

Example Request

POST /v1/companies/get-answer
{
  "question": "What is the latest funding round of the company?",
  "company_name": "Google",
  "web_domain": "google.com",
}

Example Response

{
  "question": "What is the latest funding round of the company?",
  "company_name": "Google",
  "web_domain": "google.com",
  "answer": "Google has not had a traditional funding round since its IPO in 2004, but it continues to invest heavily in its growth and acquisitions."
}

Usage Notes

  • Flexible Querying: You can ask any question related to the company, and the AI will attempt to provide an accurate answer using public information.

PreviousGet Company FieldNextDocument Index

Last updated 9 months ago