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

# Generate title & description

> Generate AI-suggested titles and descriptions based on your project configuration. Returns multiple options to choose from.



## OpenAPI

````yaml post /v1/projects/suggestions
openapi: 3.0.0
info:
  title: Partner API
  description: Public API for partner integrations
  version: '1.0'
  contact: {}
servers:
  - url: https://api-staging.respondent.io
security: []
tags: []
paths:
  /v1/projects/suggestions:
    post:
      tags:
        - projects
      summary: Get AI-generated project title and description suggestions
      description: >-
        Returns multiple variations of project title and description with
        different tones based on the provided input
      operationId: SuggestionsController_getPitchSuggestions
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-api-secret
          in: header
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PitchSuggestionDto'
      responses:
        '200':
          description: Pitch suggestions returned successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PitchSuggestionResponseDto'
        '400':
          description: Invalid request values or type
        '500':
          description: Internal server error or invalid/unexpected response from AI service
components:
  schemas:
    PitchSuggestionDto:
      type: object
      properties:
        name:
          type: string
          description: The name of the project.
          example: Survey on Customer Satisfaction
        description:
          type: string
          description: The description of the project.
          example: >-
            We are conducting a survey to understand customer satisfaction with
            our product.
      required:
        - name
        - description
    PitchSuggestionResponseDto:
      type: object
      properties:
        name:
          type: string
          description: The name of the project.
          example: Survey on Customer Satisfaction
        description:
          type: string
          description: The description of the project.
          example: >-
            We are conducting a survey to understand customer satisfaction with
            our product.
        tone:
          enum:
            - professional
            - casual
            - discreet
          type: string
          description: The tone of this suggestion.
          example: professional
      required:
        - name
        - description
        - tone

````