Skip to main content
POST
/
v1
/
projects
/
suggestions
Get AI-generated project title and description suggestions
curl --request POST \
  --url https://api-staging.respondent.io/v1/projects/suggestions \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-secret: <x-api-secret>' \
  --data '
{
  "name": "Survey on Customer Satisfaction",
  "description": "We are conducting a survey to understand customer satisfaction with our product."
}
'
[
  {
    "name": "Survey on Customer Satisfaction",
    "description": "We are conducting a survey to understand customer satisfaction with our product.",
    "tone": "professional"
  }
]

Headers

x-api-key
string
required
x-api-secret
string
required

Body

application/json
name
string
required

The name of the project.

Example:

"Survey on Customer Satisfaction"

description
string
required

The description of the project.

Example:

"We are conducting a survey to understand customer satisfaction with our product."

Response

Pitch suggestions returned successfully

name
string
required

The name of the project.

Example:

"Survey on Customer Satisfaction"

description
string
required

The description of the project.

Example:

"We are conducting a survey to understand customer satisfaction with our product."

tone
enum<string>
required

The tone of this suggestion.

Available options:
professional,
casual,
discreet
Example:

"professional"