Skip to main content
POST
/
ai
/
generate-discovery-checklist
Generate Discovery Checklist
curl --request POST \
  --url https://api.example.com/ai/generate-discovery-checklist \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "projectType": "<string>",
  "industry": "<string>",
  "context": "<string>",
  "language": "en",
  "apiKey": "<string>",
  "aiProvider": "gemini",
  "openaiApiKey": "<string>",
  "anthropicApiKey": "<string>"
}
'
{
  "questions": [],
  "projectSummary": "",
  "tips": [],
  "success": true,
  "error": "<string>"
}

Authorizations

X-API-Key
string
header
required

Body

application/json

Request to generate a discovery checklist for a project type.

projectType
string
required
Required string length: 2 - 100
industry
string | null
Maximum string length: 100
context
string | null
Maximum string length: 2000
language
enum<string>
default:en
Available options:
es,
en
apiKey
string | null
aiProvider
enum<string> | null
default:gemini
Available options:
gemini,
openai,
anthropic
openaiApiKey
string | null
anthropicApiKey
string | null

Response

Successful Response

Response with a discovery checklist.

questions
DiscoveryQuestion · object[]
projectSummary
string
default:""
tips
string[]
success
boolean
default:true
error
string | null