30-Day Free Trial

Start your free trial

Full platform access. No credit card required. API key delivered instantly.

Trial activated!

Your 30-day trial is live. Copy your API key below.

30 days remaining No credit card required
1
Open your dashboard

Configure agents, view audit logs, manage policies — all in one place.

Open dashboard →

💡 Sign in with Magic Link — on the login page, select the Magic Link tab (it's the default), enter your Tenant ID and email, then click Send Magic Link. Check your inbox for the sign-in link.

2
Make your first API call

Replace the example endpoint with whatever you want to query. Auth header is already filled in with your key.

curl https://api.rt19.runtimeai.io/api/trial/status \
  -H "X-API-Key: YOUR_KEY"
3
Install an SDK

Skip the curl scaffolding and use a typed client. Each SDK reads RUNTIMEAI_API_KEY from your environment.

Go
go get github.com/runtimeai/go
Python
pip install runtimeai
TypeScript
npm i @runtimeai/sdk
After install — your first call →

Set the env var first:

export RUNTIMEAI_API_KEY="YOUR_KEY"

Python — call /api/trial/status:

from runtimeai import Client
rt = Client()
print(rt.trial.status())

Go — same call:

rt := runtimeai.New()
status, _ := rt.Trial.Status(ctx)
fmt.Println(status)

TypeScript:

import { RuntimeAI } from '@runtimeai/sdk';
const rt = new RuntimeAI();
console.log(await rt.trial.status());

Once that returns 200, you're ready to call any other endpoint. See the live status endpoint for shape.

4
Track-specific resources

Pick the next page that matches what you're evaluating.

5
Watch the 5-minute walkthrough

A live tour of the platform — agent identity, MCP gateway, post-quantum signing, AI-native CRM. Self-serve, no booking required. Share with your team.