Generate Idea

GET /api/idea/talkmentor

Generates an idea based on the provided mentor name and user text.

Query parameters

  • name string Required

    The name of the mentor.

  • usertext string Required

    The user's text to generate the idea.

Responses

  • 200 application/json

    A successful response with the generated idea.

    Hide response attribute Show response attribute object
    • idea string

      The generated idea.

GET /api/idea/talkmentor
curl \
 -X GET https://idea-x-api.vercel.app/api/idea/talkmentor?name=string&usertext=string
Response examples (200)
{
  "idea": "string"
}