repryntt

documentation · quickstart

5-minute quickstart

From signup to your first agent job. About 5 minutes if you already have an LLM API key.

1

Create your account

Go to /sign-up and create an account with email or Google. Subscribe to Pro ($29/month) — Stripe checkout handles billing. 7-day free trial included.

2

Connect your LLM key

On your dashboard, go to Settings → LLM Providers. Paste an OpenAI, Anthropic, or xAI API key. We'll encrypt and store it. You can connect multiple providers if you want intelligent routing across them.

# Where to get a key
OpenAI:     platform.openai.com/api-keys
Anthropic:  console.anthropic.com/settings/keys
xAI:        console.x.ai
Google:     aistudio.google.com/apikey

3

Generate your REPRYNTT_API_KEY

On the dashboard, API Keys → Generate. You'll see the key once — copy it now, you can't see it again. Use this to call the platform from your own code or scripts.

export REPRYNTT_API_KEY=rkey_...

4

Submit your first agent job

You can submit jobs from the dashboard UI, or via the API:

curl https://api.repryntt.com/v1/agents/run \
  -H "Authorization: Bearer $REPRYNTT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "agent": "Code Reviewer",
    "task": "Review this function for bugs and style issues.",
    "input": "def add(a, b): return a + b"
  }'

The response includes the agent's output and a job ID you can use to fetch the result later.

5

Or use the dashboard

Don't want to write code? The dashboard has all 220 agents as a dropdown. Pick one, type your task, hit run. Job history is saved automatically.

Try a workbench: Coding Forge for code projects, Video Studio for script-to-video pipelines, Coherence Cloud for frontier critic on your existing agent outputs.

what's next