Introduction

Projects are a great way to keep your data analysis in order and visualize them.
Learn how to leverage them in Tinq.ai

If there are particular requests that you would like to keep track of and analyze, projects in in Tinq.ai are a great way to do so.
Simply add project={project-uuid} to requests made through the Sentiment analysis tool and Classifiers.

How to create a project

First, head over to the projects page and click on New.

You will land on a form asking you for basic information about your project.
Enter a title, select Analysis for the project type. And you can enter the description as well, it is not required.

Initially, your project will be empty.
You will be able to integrate it to analysis APIs and tools offered by Tinq.ai

Add data to projects

In order to add data to a specific project, simply add a project=<project-uuid> to requests made in a classifier or sentiment analysis.

axios({
	"method": "POST",
	"url": "https://tinq.ai/api/v1/sentiment-analysis",
	"headers": {
		"Accept-Charset": "UTF-8",
		"Authorization": "Bearer <api_key>",
		"Content-Type": "application/json; charset=utf-8"
	},
	"data": {
		"project": "<project-id>",
		"text": "This might be the best hotel that I've stayed at."
	}
})

The example above shows how you can add a new element to a project.


What’s Next

Now that you know how to create a project, learn how to use them.