Ship a Full-Stack App with One Prompt

Copy this prompt into your AI coding agent, or open it in one below.

Give this to your AI Create a to-do list app using Puter.js

Coding manually? see the guide

Tutorials

How to Get a Moonshot AI (Kimi) API Key: A Step-by-Step Guide

On this page

This guide shows you how to get a Moonshot AI (Kimi) API key. You'll create a Moonshot account, generate your key, and make your first API call, plus a free alternative for adding Moonshot AI models to your web app.

Prerequisites

  • A Google account — Moonshot uses Google sign-in
  • A payment method — Moonshot's API is usage-based
  • Basic familiarity with code (we'll show simple JavaScript examples)

Step 1: Create Your Moonshot AI Account

Go to platform.moonshot.ai. You'll see the landing page.

Moonshot AI platform landing page

Click Get Started to sign in with your Google account. Once you're in, you'll land on the dashboard.

Moonshot AI platform dashboard

Step 2: Generate Your API Key

In the left sidebar, click API Keys. You'll land on the API key management page.

Moonshot AI API keys page

Click Create API Key. Enter a name and select the project for the key.

Moonshot AI create API key dialog

Important: Copy the key immediately. Moonshot only shows it once. If you lose it, you'll need to generate a new one.

Store it somewhere safe — a password manager, an .env file, or your platform's secrets manager. Never commit API keys to a public repository.

Moonshot AI API key revealed with copy button

Step 3: Make Your First API Call

Moonshot uses an OpenAI-compatible API, so you can use the OpenAI SDK directly. Install it first:

npm install openai

Then make your first call:

import OpenAI from "openai";

const openai = new OpenAI({
  baseURL: "https://api.moonshot.ai/v1",
  apiKey: process.env.MOONSHOT_API_KEY,
});

const completion = await openai.chat.completions.create({
  model: "kimi-k2.6",
  messages: [{ role: "user", content: "Hello, world!" }],
});

console.log(completion.choices[0].message.content);

If you get a response back, everything is working. For the full set of endpoints and parameters, see Moonshot AI's official API docs.

Can You Use the Moonshot AI API for Free?

Creating an API key is free, but using it requires prepaid credits. Moonshot bills per token, and a minimum $1 recharge activates an account. When your cumulative recharge reaches $5, Moonshot gives you a $5 voucher to spend on usage.

Puter.js offers a different model. With its User-Pays model, you can add Moonshot AI models to your app for free: each user covers their own AI usage through their own Puter account, so your cost stays at $0 regardless of how many users you have, with no API key and no backend.

Add Moonshot AI models with the browser script tag:

<script src="https://js.puter.com/v2/"></script>
<script>
  puter.ai.chat("Explain quantum computing in simple terms", {
    model: "moonshotai/kimi-k2.6"
  }).then(response => {
    document.body.innerHTML = response.message.content;
  });
</script>

or the npm package:

import { puter } from '@heyputer/puter.js';

const response = await puter.ai.chat("Explain quantum computing in simple terms", {
  model: "moonshotai/kimi-k2.6"
});
console.log(response.message.content);

This fits front-end apps where your users sign into Puter: usage is tied to their accounts, and Puter.js runs in the browser, so it does not replace a server-side key for a backend you control. For a backend, see the pricing below.

How Much Does the Moonshot AI API Cost?

Moonshot bills per token, with separate input and output rates, so cost scales with usage instead of a flat fee. The flagship, Kimi K2.6, is $0.95 per 1M input tokens and $4.00 per 1M output. The cheapest current model, Kimi K2.5, is $0.60 input and $3.00 output. A minimum $1 recharge activates an account.

For the full breakdown, including the Batch discount and the cache-hit input rates, see our Moonshot AI API pricing guide.

Conclusion

To get a Moonshot AI API key: sign up at platform.moonshot.ai, add a payment method, then go to API Keys and click Create API Key. From there you can make your first API call, or skip the key entirely and add Moonshot AI models to a web app for free with Puter.js.

Ship a Full-Stack App with One Prompt

Give this to your AI Build an AI chat app using Puter.js

Coding manually? see the guide