Set your API key
Create an API key, then add it to your environment. Both SDKs automatically read theATEVE_API_KEY environment variable:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Install and use the Ateve SDKs for Python and Node.js.
ATEVE_API_KEY environment variable:
export ATEVE_API_KEY="YOUR_ATEVE_API_KEY"
pip install ateve
from ateve import Ateve
with Ateve() as client:
response = client.search(query="AI news")
print(response.results)
npm install ateve
import Ateve from "ateve";
const client = new Ateve();
const response = await client.search({ query: "AI news" });
console.log(response.results);