Quickstart
Start analyzing with Inconvo in under 5 minutes.
Prerequisites
Section titled “Prerequisites” Create a free API key Sign up for Inconvo and create an API key to start using the API.
Our free plan allows you to explore the Inconvo platform and API with our demo database. You will be connected to the demo database automatically on account creation.
Analyze conversationally
Section titled “Analyze conversationally”Ask Inconvo a data analysis question in natural language.
curl -X POST 'https://app.inconvo.ai/api/v1/conversations/answer' \ -H "Authorization: Bearer $INCONVO_API_KEY" \ -H 'Content-Type: application/json' \ -d $'{ "question": "How many products did we sell this week?", "context": { "organisationId": 1 } }'
An Inconvo answer includes a conversationId
which you can pass when creating subsequent answers. When you pass a conversationId
Inconvo views all previous messages from the conversation and considers them when forming the answer.
curl -X POST 'https://app.inconvo.ai/api/v1/conversations/answer' \ -H "Authorization: Bearer $INCONVO_API_KEY" \ -H 'Content-Type: application/json' \ -d $'{ "conversationId": <RESPONSE_CONVERSATION_ID>", "question": "Which product had the most sales?", "context": { "organisationId": 1 } }'
Next steps
Section titled “Next steps”Analyze with Inconvo:
- Connect your data.
- Configure a semantic model
- Integrate 🚀 Inconvo into your application