Quickstart
Start agentic analysis with Inconvo in under 5 minutes.
Walkthrough (Video)
Section titled “Walkthrough (Video)”Prerequisites
Section titled “Prerequisites”Create an API key for the Demo agent on the Inconvo platform.
Ensure you use the Demo agent so that you don’t need to connect a data source.
Create a free API key Sign up for Inconvo and create a free API key.
Start a conversation
Section titled “Start a conversation”curl -X POST 'https://app.inconvo.ai/api/v1/conversations' \ -H "Authorization: Bearer $INCONVO_API_KEY" \ -H 'Content-Type: application/json' \ -d $'{"context": {"organisationId": 1}}'
Store the id from the response which looks like:
{ "id": "convo_ccd36daf-5917-4bfe-a77c-cca5315c892f" }
Create a response
Section titled “Create a response”Within the conversation you just created, send a message to create a response.
Sub in the previously stored conversation id for {id}
in the path of the URL
curl -X POST "https://app.inconvo.ai/api/v1/conversations/{id}/response" \ -H "Authorization: Bearer $INCONVO_API_KEY" \ -H "Content-Type: application/json" \ -d $'{"message": "What is our most popular product?"}'
The response will look something like:
{ "id": "58db5e15-afa2-44b3-bf92-4a78c068b441", "conversationId": "convo_ccd36daf-5917-4bfe-a77c-cca5315c892f", "type": "text", "message": "Our most popular product is the iPhone 15, with the highest total quantity sold to date."}
Next steps
Section titled “Next steps” View Conversation Logs The conversation is available to view on the Inconvo platform, check it out.