Skip to main content

Build withJapanese AI

Made for developers building Japanese products. LLMs, voice, translation. Bring your own harness and build in minutes.

curl https://api.shisa.ai/openai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $SHISA_API_KEY" \
  -d '{
    "model": "shisa-ai/shisa-v2.1-llama3.3-70b",
    "messages": [{
      "role": "user",
      "content": "こんにちは、シーサーです!"
    }]
  }'

Get an API key

Every Shisa API uses the same key. Create one in the Shisa platform, then pass it as a bearer token — see Authentication for the shared bearer-token header convention. New accounts receive $10 in free API credits to spend across any service.

API host

All HTTPS and WSS services share a single host:

api.shisa.ai
ServiceTransport / methodPath
LLM (chat completions)HTTPS POST/openai/v1/chat/completions
Speech Recognition (batch)HTTPS POST/asr/srt/audio_llm
Speech Recognition (realtime)WSS/ws/asr/realtime
Text-to-Speech (HTTP)HTTPS POST/tts
Text-to-Speech (streaming)WSS/ws/tts/realtime
TranslationHTTPS POST/translate/

Ready to build? Start with the LLM quickstart.