Quickstart
This guide will walk you through creating your first dataset and running a query.
Prerequisites
Section titled “Prerequisites”- A Catalyzed account (sign up here)
- An API token (see Authentication)
Quick Start
Section titled “Quick Start”-
Create an API Token
Go to Settings > API Tokens in the Catalyzed app and create a new token.
-
Create a Dataset
Terminal window curl -X POST https://api.catalyzed.ai/datasets \-H "Authorization: Bearer YOUR_API_TOKEN" \-H "Content-Type: application/json" \-d '{"teamId": "YOUR_TEAM_ID","name": "My First Dataset","description": "A sample dataset"}' -
Upload a File
Terminal window curl -X POST https://api.catalyzed.ai/files \-H "Authorization: Bearer YOUR_API_TOKEN" \-F "file=@data.csv" \-F "teamId=YOUR_TEAM_ID" -
Query Your Data
Terminal window curl -X POST https://api.catalyzed.ai/queries \-H "Authorization: Bearer YOUR_API_TOKEN" \-H "Content-Type: application/json" \-d '{"sql": "SELECT * FROM my_table LIMIT 10","tables": {"my_table": "TABLE_ID"}}'
Next Steps
Section titled “Next Steps”- Learn about Datasets and how to organize your data
- Explore the Query Engine for advanced SQL features
- Set up Pipelines for automated data processing