curl --request POST \
--url https://api.example.com/analysis \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "investment_analysis",
"investorStartupId": "<string>"
}
'{
"message": "<string>",
"data": {
"id": "<string>",
"type": "<string>",
"isCompleted": true,
"result": {
"score": {
"value_proposition": 123,
"innovation": 123,
"market_size": 123,
"defensibility": 123,
"scalability": 123,
"traction": 123,
"overall_score": 123
},
"thesis": "<string>",
"risk": "<string>",
"customer": "<string>",
"problem": "<string>",
"value": "<string>",
"size": "<string>",
"innovation": "<string>",
"defensibility": "<string>",
"scalability": "<string>",
"traction": "<string>"
},
"status": "<string>",
"cuuroModelVersion": "<string>",
"scoreDetails": {
"value_proposition": 123,
"innovation": 123,
"market_size": 123,
"defensibility": 123,
"scalability": 123,
"traction": 123,
"overall_score": 123
},
"createdAt": "<string>",
"updatedAt": "<string>",
"overallScore": 123,
"investorStartupId": "<string>",
"investorId": "<string>",
"startupId": "<string>"
}
}curl --request POST \
--url https://api.example.com/analysis \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "investment_analysis",
"investorStartupId": "<string>"
}
'{
"message": "<string>",
"data": {
"id": "<string>",
"type": "<string>",
"isCompleted": true,
"result": {
"score": {
"value_proposition": 123,
"innovation": 123,
"market_size": 123,
"defensibility": 123,
"scalability": 123,
"traction": 123,
"overall_score": 123
},
"thesis": "<string>",
"risk": "<string>",
"customer": "<string>",
"problem": "<string>",
"value": "<string>",
"size": "<string>",
"innovation": "<string>",
"defensibility": "<string>",
"scalability": "<string>",
"traction": "<string>"
},
"status": "<string>",
"cuuroModelVersion": "<string>",
"scoreDetails": {
"value_proposition": 123,
"innovation": 123,
"market_size": 123,
"defensibility": 123,
"scalability": 123,
"traction": 123,
"overall_score": 123
},
"createdAt": "<string>",
"updatedAt": "<string>",
"overallScore": 123,
"investorStartupId": "<string>",
"investorId": "<string>",
"startupId": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.