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

# Generate Differentiators

> Generate a personalized "Why Choose Me" section for proposals.

**Required scope:** `read`

Creates compelling differentiators based on:
- Your experience and skills
- Relevant past projects
- The specific project requirements

Perfect for creating personalized proposals at scale.



## OpenAPI

````yaml /openapi/openapi-external.json post /ai/generate-differentiators
openapi: 3.1.0
info:
  title: Quikly.ai External API
  version: 1.0.0
  description: >-
    REST API for external integrations with Quikly.ai. Authenticate using an API
    key passed in the X-API-Key header. Use these endpoints from n8n, Zapier,
    custom scripts, or any HTTP client.
servers: []
security:
  - ApiKeyAuth: []
tags:
  - name: Proposals
    description: Create, read, update, and manage client proposals.
  - name: Profile
    description: Read and update the authenticated user's profile.
  - name: Templates
    description: Manage reusable proposal templates.
  - name: AI Services
    description: >-
      AI-powered analysis: rate recommendations, brief analysis,
      differentiators.
  - name: Public API
  - name: Usage
    description: Query API usage and quota information.
  - name: Webhooks
    description: Manage webhook subscriptions for real-time events.
  - name: Agent
    description: Interact with the AI agent for automated workflows.
  - name: Lead Sessions
    description: Track and manage lead capture sessions.
paths:
  /ai/generate-differentiators:
    post:
      tags:
        - AI Services
      summary: Generate Differentiators
      description: |-
        Generate a personalized "Why Choose Me" section for proposals.

        **Required scope:** `read`

        Creates compelling differentiators based on:
        - Your experience and skills
        - Relevant past projects
        - The specific project requirements

        Perfect for creating personalized proposals at scale.
      operationId: >-
        generate_differentiators_api_external_v1_ai_generate_differentiators_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DifferentiatorsRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DifferentiatorsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    DifferentiatorsRequest:
      properties:
        yearsOfExperience:
          anyOf:
            - type: integer
            - type: 'null'
          title: Yearsofexperience
        role:
          type: string
          title: Role
        seniority:
          type: string
          title: Seniority
        skills:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Skills
        certifications:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Certifications
        relevantProjects:
          anyOf:
            - items:
                $ref: '#/components/schemas/RelevantProjectInput'
              type: array
            - type: 'null'
          title: Relevantprojects
        portfolioUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Portfoliourl
        githubUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Githuburl
        linkedinUrl:
          anyOf:
            - type: string
            - type: 'null'
          title: Linkedinurl
        bio:
          anyOf:
            - type: string
            - type: 'null'
          title: Bio
        providerType:
          anyOf:
            - type: string
            - type: 'null'
          title: Providertype
          default: freelancer
        companyName:
          anyOf:
            - type: string
            - type: 'null'
          title: Companyname
        teamSize:
          anyOf:
            - type: integer
            - type: 'null'
          title: Teamsize
        orgDescription:
          anyOf:
            - type: string
            - type: 'null'
          title: Orgdescription
        orgServices:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Orgservices
        orgClients:
          anyOf:
            - type: string
            - type: 'null'
          title: Orgclients
        agencyMargin:
          anyOf:
            - type: integer
            - type: 'null'
          title: Agencymargin
        benchRoles:
          anyOf:
            - items:
                $ref: '#/components/schemas/BenchRoleInput'
              type: array
            - type: 'null'
          title: Benchroles
        requirements:
          items:
            $ref: '#/components/schemas/app__schemas__ai__RequirementInput__1'
          type: array
          title: Requirements
        projectName:
          anyOf:
            - type: string
            - type: 'null'
          title: Projectname
        projectDescription:
          anyOf:
            - type: string
            - type: 'null'
          title: Projectdescription
        language:
          type: string
          enum:
            - es
            - en
          title: Language
          default: en
        apiKey:
          anyOf:
            - type: string
            - type: 'null'
          title: Apikey
        aiProvider:
          anyOf:
            - type: string
              enum:
                - gemini
                - openai
                - anthropic
            - type: 'null'
          title: Aiprovider
          default: gemini
        openaiApiKey:
          anyOf:
            - type: string
            - type: 'null'
          title: Openaiapikey
        anthropicApiKey:
          anyOf:
            - type: string
            - type: 'null'
          title: Anthropicapikey
      type: object
      required:
        - role
        - seniority
        - requirements
      title: DifferentiatorsRequest
      description: Schema for differentiators generation request.
    DifferentiatorsResponse:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        differentiators:
          $ref: '#/components/schemas/DifferentiatorsContent'
        relevantExperience:
          type: string
          title: Relevantexperience
        whyChooseMe:
          items:
            type: string
          type: array
          title: Whychooseme
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
      type: object
      required:
        - differentiators
        - relevantExperience
        - whyChooseMe
      title: DifferentiatorsResponse
      description: Schema for differentiators response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    RelevantProjectInput:
      properties:
        name:
          type: string
          title: Name
        description:
          type: string
          title: Description
        url:
          anyOf:
            - type: string
            - type: 'null'
          title: Url
        techStack:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Techstack
        year:
          anyOf:
            - type: integer
            - type: 'null'
          title: Year
      type: object
      required:
        - name
        - description
      title: RelevantProjectInput
      description: Relevant project for differentiators.
    BenchRoleInput:
      properties:
        roleName:
          type: string
          title: Rolename
          default: ''
        seniority:
          type: string
          title: Seniority
          default: ''
      type: object
      title: BenchRoleInput
      description: Role + seniority from onboarding/profile bench (no rates).
    app__schemas__ai__RequirementInput__1:
      properties:
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          default: ''
        complexity:
          type: integer
          title: Complexity
          default: 3
        priority:
          type: string
          title: Priority
          default: medium
      type: object
      required:
        - name
      title: RequirementInput
      description: Simplified requirement for analysis.
    DifferentiatorsContent:
      properties:
        title:
          type: string
          title: Title
        content:
          type: string
          title: Content
      type: object
      required:
        - title
        - content
      title: DifferentiatorsContent
      description: Generated differentiators content.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key obtained from Quikly.ai Settings → API Keys.
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````