> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agent.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# [CRFull] Run Full Company Research

> Run comprehensive company research with configurable sections. Returns full JSON report with all data.



## OpenAPI

````yaml /api-reference/v1/v1.1.0_openapi.json post /action/company_research_v2_run_full_research
openapi: 3.0.0
info:
  version: 1.1.0
  title: AI Actions - Get Data
  description: API specifications for 'Get Data' category AI actions.
  license:
    name: MIT
servers:
  - url: https://api-lr.agent.ai/v1
security:
  - bearerAuth: []
paths:
  /action/company_research_v2_run_full_research:
    post:
      tags:
        - Company Research
      summary: '[CRFull] Run Full Company Research'
      description: >-
        Run comprehensive company research with configurable sections. Returns
        full JSON report with all data.
      operationId: companyResearchV2RunFullResearch
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                domain:
                  type: string
                  description: Domain to research (e.g., hubspot.com).
                section_company_overview:
                  type: boolean
                  description: >-
                    Include company description, industry, employee count,
                    headquarters.
                  default: true
                section_visual_timeline:
                  type: boolean
                  description: >-
                    Include AI-generated visual infographic of company
                    milestones and history.
                  default: true
                section_product_summary:
                  type: boolean
                  description: Include product descriptions and G2 ratings.
                  default: true
                section_homepage_screenshot:
                  type: boolean
                  description: Include screenshot of company homepage.
                  default: true
                section_technology_stack:
                  type: boolean
                  description: >-
                    Include technologies, social media profiles, and follower
                    counts.
                  default: true
                section_wappalyzer_technologies:
                  type: boolean
                  description: Include detailed technology detection from Wappalyzer.
                  default: true
                section_search_keywords:
                  type: boolean
                  description: Include SEO keyword analysis with PPC and organic metrics.
                  default: true
                section_financials:
                  type: boolean
                  description: >-
                    Include revenue, market cap, profit margins (public
                    companies).
                  default: true
                section_funding_history:
                  type: boolean
                  description: Include funding rounds and investors.
                  default: true
                section_web_traffic:
                  type: boolean
                  description: Include website traffic trends and visitor metrics.
                  default: true
                section_news:
                  type: boolean
                  description: Include recent news and press coverage.
                  default: true
                section_people:
                  type: boolean
                  description: Include executives and leadership with LinkedIn URLs.
                  default: true
                section_competitors:
                  type: boolean
                  description: Include competitor analysis with differentiation.
                  default: true
                section_job_openings:
                  type: boolean
                  description: Include current job listings.
                  default: true
                section_contact:
                  type: boolean
                  description: Include company contact details.
                  default: true
                section_g2_reviews:
                  type: boolean
                  description: Include G2 review summary and ratings.
                  default: true
                force_refresh:
                  type: boolean
                  description: Bypass cache and fetch fresh data.
                  default: false
                output_variable_name:
                  type: string
                  description: Variable name for the full research report JSON.
                  default: research_report
                  pattern: ^[a-zA-Z][a-zA-Z0-9_]*$
              required:
                - domain
                - output_variable_name
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
        '401':
          description: Unauthorized - invalid or missing bearer token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionResponse'
components:
  schemas:
    ActionResponse:
      type: object
      properties:
        status:
          type: integer
          format: int32
          description: HTTP status code of the action response
        response:
          type: object
          description: Response data from the action
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer token from your account
        ([https://agent.ai/user/integrations#api](https://agent.ai/user/integrations#api))

````