Developers

An API key in under a minute. No sales call.

Sign up, get a working key immediately, and see your first audit result today. This is the self-serve path, no invite code, no human in the loop.

10-minute quickstart

From zero to a verdict, in four steps

Free tier: 25 audits/month, no credit card. Upgrade any time from the dashboard.

01

Sign up

Choose Self-serve on the account screen. Your API key is generated on the spot. Copy it, it's shown once.

02

Install the SDK

pip install jiminy-sdk and set JIMINY_API_KEY as an environment variable.

03

Submit a trace

Wrap your agent's decision in TraceBuilder, or use the LangChain / CrewAI adapter to auto-submit on completion.

04

Read the result

A verdict, per-criterion evidence, and an attestation chain come back in about 34 seconds. See a sample report first if you want to know what to expect.

A few lines, not a rebuild.

pip install jiminy-sdk from jiminy_sdk import Client, TraceBuilder builder = TraceBuilder( trace_id="...", agent_id="your-agent", agent_owner="Your Org", submitted_by="Your Compliance Team", task_description="...", timestamp=..., domain_profile="general", hmac_key="your-per-tenant-key", ) builder.add_step(1, "tool_name", input=..., output=..., reasoning="...") builder.finalize("Final decision text.") client = Client(api_key="your-api-key", base_url="https://jiminy-api-287920422190.europe-west2.run.app") result = client.evaluate(builder.build()) print(result["overall_verdict"]) #=> "approved"

Or skip the SDK glue entirely: the LangChain callback handler and CrewAI event listener auto-submit on completion.

Evaluating on behalf of someone else?

Self-serve accounts submit traces for their own agents. If you're an independent evaluator, auditor, or compliance team reviewing another organisation's agent, or you're exploring the enterprise design-partner programme, see the design partner programme instead.