Skip to content

    Qwen3 Coder 480B A35B

    Code

    Qwen3-Coder-480B-A35B-Instruct

    Qwen3 Coder 480B A35B on FlexAI: Alibaba LLM, license not listed, served via the OpenAI-compatible Token Factory at the live market-tracked rate.

    Pricing

    Input

    $0.162 / M tokens

    Output

    $0.9 / M tokens

    Primary pricing source

    Context

    32K tokens

    API endpoint

    /v1/chat/completions

    Compatibility

    OpenAI

    Estimate your monthly cost

    M tokens
    M tokens
    10M × $0.162/M input$1.62
    2M × $0.9/M output$1.8
    Estimated monthly cost$3.42

    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="Qwen3-Coder-480B-A35B-Instruct",
        messages=[
            {"role": "user", "content": "Hello!"}
        ],
    )
    
    print(response.choices[0].message.content)