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/123e4567-e89b-12d3-a456-426614174000/response' \
-H "Authorization: Bearer $INCONVO_API_KEY" \
-H 'Content-Type: application/json' \
-d '"How many products did we sell this week?"'

An Inconvo response includes a conversationId which you use in the URL when creating subsequent responses. When you create a response for an existing conversation, Inconvo views all previous messages from the conversation and considers them when forming the response.

curl -X POST 'https://app.inconvo.ai/api/v1/conversations/<RESPONSE_CONVERSATION_ID>/response' \
-H "Authorization: Bearer $INCONVO_API_KEY" \
-H 'Content-Type: application/json' \
-d '"Which product had the most sales?"'

Analyze with Inconvo: