Quick start
Intuned is the browser automation platform for developers and product teams. Follow this step by step tutorial to build, deploy, and call your first browser automaton project on Intuned.
1. Create a workspace
Contact us to create a workspace. Its free to try! A workspace is the top level logical entity allows you to govern access control over your Intuned resources. To read more, checkout Workspace.
2. Create a project
Projects are the core building block in Intuned. Each workspace can have one or more projects. Use a project to build a scraper or, an automation or an integration with website that lacks APIs.
Open your workspace and create a new project with name new-project
.
3. Create Books API
APIs are the building blocks of your project. They are the functions that you will call to interact with the browser.
Create an API file
Create an API file
Create new API (api/books.ts
).
Create API logic
Create API logic
Copy the following code into the newly created api/books.ts
file.
4. Run the API
Test your API in the Intuned IDE.
Pick `books` api
Pick `books` api
Pick the books
api from dropdown.
Click Run
Click Run
Click the Run Button.
Create Parameters set
Create Parameters set
Create a new parameters set for the API you just created. Intuned enables you to create multiple parameter sets for the same API. This helps you to test and iterate on API. Create param set “Novels” and copy the following:
Click run again!
Click run again!
Click the Run Button again that the first param set is created.
View run results
View run results
After the API run is complete. You can look at the returned result in the terminal.
5. Deploy it
Intuned enabled you to deploy your project with a click of a button. Lets do it!
To learn more about deployments, checkout Deployments.
6. Call your API
Now that your project API is deployed you have multiple ways to call it. You can call the API directly or schedule a job to run it at a specific time. For now, we will call the API directly.
Create an API key
Create an API key
You can create an API key by going to https://app.intuned.io/api-keys
Get your workspace Id
Get your workspace Id
You can find it by going to https://app.intuned.io/settings/workspace
Call the API
Call the API
Now that you have your API key and your workspace Id, you are ready to call the API. Intuned exposes a REST API that you can call either call directly or use the @intuned/client
to call.