Setup
Fund and claim key
Easy setup and low prices. What more could you want?
- 1Next
- 2Next
- 3Next
quick start
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.
Setup
Easy setup and low prices. What more could you want?
pick a workflow
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.
agent install
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.
code sample
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