Subject: Refund request — Allegretto Pro subscription #2899-2273

Hi,

I subscribed to the Allegretto Pro plan today but realized it is a consumer product and not the API access I needed for developer tooling. I have not used any credits. I am requesting a full refund. Order: #2899-2273.

Could you please help?

Best regards,

Abdur-Rahman Ali

Hi Abdur-Rahman,

Thank you for reaching out. I completely understand the mix-up—it is easy to accidentally subscribe to a consumer plan when you are actually looking for developer API access!

How to Process Your Refund

Please note that the membership system for our consumer products is completely separate from the Developer Platform’s API billing. Because your request is related to a consumer subscription, the fastest and most secure way to get your refund sorted out is to contact our dedicated billing team directly.

  • Action Required: Please forward your refund request and order number (#2899-2273) to [email protected].

Developer Tooling Alternatives

Since you mentioned you are looking for developer tooling, I wanted to share a helpful alternative. If you only require basic reasoning capabilities, you can actually try using the Kimi Code endpoint directly.

Configuration Item Value
Entrypoint https://api.kimi.com/coding/v1
API Key Your Kimi Code API Key
Model kimi-for-coding

Please let me know if you have any other questions regarding the Developer Platform or API access.

Bests,
YU

Thank you for the answer. How can I use Claude Code desktop app using my Kimi subscription? I managed to make it work from CLI; but not for the existing projects in my Claude Code desktop app? I quickly ran out of tokens when I used the API route.

If you’re looking to use a Kimi Code-based API to support the Claude Code CLI tool, you may want to check out this link, but I’m sorry I’m not quite familiar with the Claude Code desktop app. Essentially, what it provides is model inference capabilities.

Claude Code

Claude Code is a command-line programming assistant launched by Anthropic. For installation instructions, please refer to the Claude Code official documentation.

After installation, you need to skip Anthropic’s default login flow. Execute the following script in the terminal:

node --eval "
    const homeDir = os.homedir();
    const filePath = path.join(homeDir, '.claude.json');
    if (fs.existsSync(filePath)) {
        const content = JSON.parse(fs.readFileSync(filePath, 'utf-8'));
        fs.writeFileSync(filePath, JSON.stringify({ ...content, hasCompletedOnboarding: true }, null, 2), 'utf-8');
    } else {
        fs.writeFileSync(filePath, JSON.stringify({ hasCompletedOnboarding: true }), 'utf-8');
    }"

Configure Kimi Code Model

Set environment variables before starting Claude Code:

macOS / Linux

export ENABLE_TOOL_SEARCH=false
export ANTHROPIC_BASE_URL=https://api.kimi.com/coding/
export ANTHROPIC_API_KEY=Your API Key

claude

Windows

$env:ENABLE_TOOL_SEARCH="false"
$env:ANTHROPIC_BASE_URL="https://api.kimi.com/coding/"
$env:ANTHROPIC_API_KEY="Your API Key"

claude

After starting, enter /status to confirm the model is active. Use the Tab key to switch to the Kimi K2 Thinking model.