Skip to content

Quickstart

Start analyzing with Inconvo in under 5 minutes.


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.

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
}
}'

Analyze with Inconvo: