For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
LoginBook a Demo
  • Getting Started
    • Athena SDK Quickstart
  • Database API
    • Database Filters & CRUD
  • Python Guides
    • Build with Agents
    • Use Models Directly
    • Load Data Frames
    • Upload Files
    • Create Assets
    • Structured Output
    • Long-Running AOP Execution
  • TypeScript Guides
    • Build with Agents
    • Working with Assets
    • Use Models Directly
    • Execute AOPs
    • Sheets API
    • Browser JavaScript (ESM)
    • UI Registry (Assistant.js)
    • Upload Files
    • Create Assets
    • Structured Output
  • API Reference
Logo
LoginBook a Demo
Getting Started

Quickstart

Was this page helpful?

Database API

Next
Built with

We recommend using the SDK in Athena Notebooks for Python or in your preferred development environment for TypeScript.

1

Python
TypeScript

Install Athena SDK

1!pip install -U athena-intelligence

Initialize Athena client

1import os
2
3ATHENA_API_KEY = os.environ["ATHENA_API_KEY"]
4
5from athena import Model, Tools
6from athena.client import Athena
7
8athena = Athena(
9 api_key=ATHENA_API_KEY,
10)

Continue

Explore examples and sample notebooks of end-to-end workflows with Athena SDK. Choose your preferred language from the Python Guides or TypeScript Guides sections.

To get API early access, reach out to team@athenaintel.com