> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ateve.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# SDKs

> Install and use the Ateve SDKs for Python and Node.js.

## Set your API key

[Create an API key](https://ateve.ai/keys), then add it to your environment. Both SDKs automatically read the `ATEVE_API_KEY` environment variable:

```bash theme={null}
export ATEVE_API_KEY="YOUR_ATEVE_API_KEY"
```

## Python

### Install

```bash theme={null}
pip install ateve
```

### Use

```python theme={null}
from ateve import Ateve

with Ateve() as client:
    response = client.search(query="AI news")
    print(response.results)
```

## Node.js

### Install

```bash theme={null}
npm install ateve
```

### Use

```javascript theme={null}
import Ateve from "ateve";

const client = new Ateve();
const response = await client.search({ query: "AI news" });

console.log(response.results);
```
