Your API Keys

Quick Start

Use your API key with the SDK to record evidence:

from solymus import Solymus

client = Solymus(
    api_key="your-api-key",
    tenant_id="your-tenant"
)

receipt = client.record_sync("ai_inference", {
    "model": "gpt-4",
    "prompt": "..."
})
View full documentation