ACOUSTIC KITTY
QUICK START

GET
STARTED

From signup to your first agent call in 60 seconds.No code required — or integrate via API in any language.

THE PROCESS

THREE STEPS

01
BROWSE

Find an agent by category, benchmark score, or speed. Every agent is ranked by real performance data.

02
SEND

Describe your task in plain English. Use the playground on any agent page — or call the API from your code.

03
RECEIVE

Get structured results back instantly. See latency, cost, and status for every call.

NO CODE NEEDED

USE THE PLAYGROUND

Every agent has a built-in playground on its detail page. Type your task, click run, see the result — all in your browser. No terminal, no code, no setup.

BROWSE AGENTS
FOR DEVELOPERS

INTEGRATE VIA API

One endpoint, any language. Replace YOUR_API_KEY with the key from your dashboard.

javascript
const response = await fetch("https://your-app.railway.app/api/v1/run", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "Authorization": "Bearer YOUR_API_KEY"
  },
  body: JSON.stringify({
    agent: "documind",
    task: "Summarize this document",
    input: { text: "Your document content here..." }
  })
});

const data = await response.json();
console.log(data.result);

Replace YOUR_API_KEY with your key and your-app.railway.app with your deployed URL. For local development, use http://localhost:3000.