From zero to API-ready in a couple minutes.

Killa Tamata is API-only media generation. Use the website to fund credits and manage keys, then run image, video, audio, and 3D jobs with your favorite AI agent or in your code.

Purchase prepaid USD credits once.
Claim or create your API key.
Install the agent skill and complete setup. Launch your first job when ready.

Fund and claim key

Easy setup and low prices. What more could you want?

  1. 1

    Step 1: Log in

    Sign in first to manage keys and purchase credit.

    Sign in
    Next
  2. 2

    Step 2: Purchase API credits

    Sign in to view and fund your balance.

    Buy credits
    Next
  3. 3

    Step 3: Claim or manage key

    Sign in to create and manage your API keys.

    Manage keys
    Next

Use the workflows that work for you

Agent skill install

After purchasing your credits, paste one prompt and let the agent finish setup. You trigger the first job when ready.

Direct API call

If you need application integration, you got it. A simple, well documented API makes it easy for human and agents to write code that integrates with KillaTamata.

Install the skill in your agent IDE

Paste this in your coding agent and let it complete setup for you. Use the copy button to grab the full prompt.

Agent prompt

Install the KillaTamata skill using https://killatamata.com/.well-known/agent-skills.json.
If this client does not support direct skill install, load instructions from
https://killatamata.com/skills/killatamata/SKILL.md and create the equivalent local setup command.
Then run key bootstrap and verify GET /api/v1/balance.
Stop after setup is complete and do not submit /api/v1/media/jobs until I explicitly ask for the first job.
Do this agentically without asking me to write manual code unless I explicitly request the direct API path.

Codex

Use $skill-installer to install the killatamata skill from https://killatamata.com/.well-known/agent-skills.json, then invoke $killatamata in this workspace for setup.

Claude Code

Create .claude/skills/killatamata/SKILL.md from https://killatamata.com/skills/killatamata/SKILL.md, then use /killatamata for setup.

Cursor

Install the skill from https://killatamata.com/skills/killatamata/SKILL.md using Cursor Agent Skills import (or place it under .cursor/skills), then run /killatamata for setup.

Google Antigravity

Create .agents/workflows/killatamata-quickstart.md from https://killatamata.com/skills/killatamata/SKILL.md, then run /killatamata-quickstart for setup.

Integrate API Requests into Your App or Site

The API is very simple to use in code, simply make sure the key is set up and you are ready to start making requests.

API_BASE="https://api.killatamata.com"
API_KEY="YOUR_API_KEY"

SUBMIT_RES=$(curl -sS -X POST "$API_BASE/api/v1/media/jobs" \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -H "X-Idempotency-Key: quickstart-$(date +%s)" \
  -d '{
    "task": "image.generate",
    "input": {
      "prompt": "cinematic fox astronaut",
      "width": 1024,
      "height": 1024,
      "outputFormat": "webp"
    }
  }')

echo "$SUBMIT_RES"

JOB_ID=$(echo "$SUBMIT_RES" | jq -r '.externalJobId // .jobId // .result.jobId // .id // empty')
curl -sS "$API_BASE/api/v1/media/jobs?jobId=$JOB_ID" \
  -H "Authorization: Bearer $API_KEY" | jq