Skip to content

Quickstart

This guide will walk you through creating your first dataset and running a query.

  1. Create an API Token

    Go to Settings > API Tokens in the Catalyzed app and create a new token.

  2. 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"
    }'
  3. 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"
  4. 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"
    }
    }'
  • Learn about Datasets and how to organize your data
  • Explore the Query Engine for advanced SQL features
  • Set up Pipelines for automated data processing