Skip to content

SuperMe SDK

Python client for the SuperMe AI API with an OpenAI-compatible interface.

Installation

pip install superme-sdk

Quick start

Get your API key at superme.ai/settingsAPI Keys.

from superme_sdk import SuperMeClient

client = SuperMeClient(api_key="your-superme-api-key")

# ask a question to a user's AI
answer = client.ask("What is your take on product-market fit?", username="ludo")
print(answer)

# look up a profile
profile = client.get_profile("ludo")

# get perspectives from multiple people at once
result = client.perspective_search("What is the best growth channel for B2B?")
print(result["answer"])

API Reference