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

# [PR1] Research Prospect

> Researches a prospect via Perplexity Sonar Pro and produces a structured Prospect Intelligence Brief with 8 sections: Snapshot, Role, Career, Activity, Priorities, Outreach Angles, Communication Style, and ICP Fit.



## OpenAPI

````yaml /api-reference/v1/v1.1.0_openapi.json post /action/prospect_research_research_prospect
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/prospect_research_research_prospect:
    post:
      tags:
        - Prospect Research
      summary: '[PR1] Research Prospect'
      description: >-
        Researches a prospect via Perplexity Sonar Pro and produces a structured
        Prospect Intelligence Brief with 8 sections: Snapshot, Role, Career,
        Activity, Priorities, Outreach Angles, Communication Style, and ICP Fit.
      operationId: prospectResearchResearchProspect
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                prospect_name:
                  type: string
                  description: Full name of the person being researched.
                company_website:
                  type: string
                  description: >-
                    The domain of the company the prospect works at (e.g.
                    hubspot.com).
                linkedin_url:
                  type: string
                  description: >-
                    Prospect's LinkedIn profile URL. Significantly enriches
                    output.
                additional_context:
                  type: string
                  x-ui: textarea
                  description: >-
                    Anything else you know about this person (e.g. 'Met at
                    SaaStr', 'Referred by Jane').
                seller_website:
                  type: string
                  description: Your own company website for mutual context analysis.
                seller_product:
                  type: string
                  x-ui: textarea
                  description: >-
                    What you sell or offer. Enables seller-specific outreach
                    angles.
                seller_icp:
                  type: string
                  x-ui: textarea
                  description: >-
                    Who your ideal customer is. Enables the ICP Fit Signals
                    section.
                company_research:
                  type: string
                  x-ui: textarea
                  description: >-
                    Company research output from a prior Company Research agent
                    run, if available.
                output_variable_name:
                  type: string
                  description: Variable name to store the research output.
                  default: prospect_research
                  pattern: ^[a-zA-Z][a-zA-Z0-9_]*$
              required:
                - prospect_name
                - company_website
                - 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))

````