Getting started

Welcome to the Aeon documentation!

Getting started with Aeon is quick and easy, you can be up and running in just a few minutes.

1. Get your credentials

  1. Go to your dashboard
  2. Copy your API key and Project ID

2. Install the SDK

Python:

bash
1pip install aeonpy

JavaScript/TypeScript:

bash
1npm install @aeon-ai/aeonjs

3. Initialize the Aeon client

python
1from aeon import Aeon 2 3# Use env vars for secrets 4aeon = Aeon(api_key="YOUR_API", project_id=123)

Or in JavaScript/TypeScript:

javascript
1import Aeon from "@aeon-ai/aeonjs"; 2 3const aeon = new Aeon("API_KEY", 123);

Next Steps