Skip to main content

Installation Methods

The RecallrAI Python SDK can be installed using your preferred Python package manager.
  • pip
  • Poetry
  • uv
pip install recallrai

Verify Installation

After installation, verify that the SDK is properly installed:
import recallrai

print(f"RecallrAI SDK version: {recallrai.__version__}")

Get Your API Credentials

1

Sign up for RecallrAI

Create an account at RecallrAI Dashboard if you haven’t already.
2

Get your API key

Navigate to your project api keys section and create an API key. It will start with rai_.
3

Get your Project ID

Copy your Project UUID from the dashboard.
Keep your API key secure and never commit it to version control. Use environment variables or a secrets manager.

Next Steps