Documentation Index
Fetch the complete documentation index at: https://docs.recallrai.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
TheRecallrAI client is the entry point for all SDK operations. It manages authentication and provides methods for user management.
Initialization
Methods
create_user()
Create a new user in your project.Unique identifier for the user. Must be unique within your project.
Optional metadata to associate with the user. Can contain any JSON-serializable data.
User object
Raises: UserAlreadyExistsError if user_id already exists
get_user()
Retrieve an existing user by ID.The ID of the user to retrieve.
User object
Raises: UserNotFoundError if user doesn’t exist
list_users()
List all users in your project with optional filtering and pagination.Number of users to skip. Default:
0Maximum number of users to return. Default:
10Filter users by metadata fields. Only users matching all specified fields are returned.
UserList object with:
users: List ofUserobjectstotal: Total number of users matching the filterhas_more: Boolean indicating if more results are available
Async Client
For async applications, useAsyncRecallrAI: