Skip to content

    Kimi K2.5

    Multimodal

    Kimi-K2.5

    Kimi K2.5 on FlexAI: Moonshot AI LLM, license not listed, served via the OpenAI-compatible Token Factory at the live market-tracked rate.

    Pricing

    Input

    $0.315 / M tokens

    Output

    $1.7 / M tokens

    Primary pricing source

    Context

    64K tokens

    API endpoint

    /v1/chat/completions

    Compatibility

    OpenAI

    Estimate your monthly cost

    M tokens
    M tokens
    10M × $0.315/M input$3.15
    2M × $1.7/M output$3.4
    Estimated monthly cost$6.55

    Estimate only, at the current market-tracked rate. Usage-based; no minimums.

    Get an API key

    Quick Start

    from openai import OpenAI
    
    client = OpenAI(base_url="https://tokens.flex.ai/v1", api_key="your-api-key")
    
    response = client.chat.completions.create(
        model="Kimi-K2.5",
        messages=[{
            "role": "user",
            "content": [
                {"type": "text", "text": "What's in this image?"},
                {"type": "image_url", "image_url": {"url": "https://example.com/photo.jpg"}},
            ],
        }],
    )
    
    print(response.choices[0].message.content)