Back

ValidatorAI
Description
Entrepreneurs get feedback for your startup idea with validation and steps to take plus an elevator pitch for your business.
Details
https://plugin.validatorai.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "ValidatorAI",
"name_for_model": "ValidatorAI",
"description_for_human": "Entrepreneurs get feedback for your startup idea with validation and steps to take plus an elevator pitch for your business.",
"description_for_model": "Give user good advice and tips in starting a business.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://plugin.validatorai.com/openapi.json"
},
"logo_url": "https://plugin.validatorai.com/img/v-logo.png",
"contact_email": "info@napkin.com",
"legal_info_url": "https://validatorai.com/privacy"
}
https://plugin.validatorai.com/openapi.json
{
"openapi": "3.0.0",
"info": {
"title": "Evaluate Business Idea API",
"version": "1.0.0",
"description": "API for evaluating a business idea and providing feedback."
},
"servers": [
{
"url": "https://plugin.validatorai.com"
}
],
"paths": {
"/api": {
"post": {
"operationId": "evaluateBusinessIdea",
"summary": "Evaluate a business idea",
"description": "Evaluates a business idea and provides feedback.",
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"idea": {
"type": "string",
"description": "The business idea to evaluate."
}
},
"required": [
"idea"
]
}
}
}
},
"responses": {
"200": {
"description": "Successful evaluation of the business idea",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"Important Things To Consider": {
"type": "string",
"description": "Objective feedback for the business idea."
},
"Feedback": {
"type": "string",
"description": "Objective feedback for the business idea."
},
"Elevator Pitch": {
"type": "string",
"description": "An elevator pitch for the business idea."
}
}
}
}
}
},
"400": {
"description": "Bad Request"
},
"404": {
"description": "Not Found"
}
}
}
}
}
}