ModelSheep
All models

Qwen3 Embedding 0.6B API

Turn text into vectors for search, clustering and retrieval from $0.004 per million input tokens.

  • Vector width 1024
  • MTEB score 64.34
  • Context 33K tokens
  • $0.004 per million
from openai import OpenAI

client = OpenAI(
    base_url="https://api.modelsheep.com",
    api_key=API_KEY_MODELSHEEP,
)

response = client.embeddings.create(
    model="Qwen/Qwen3-Embedding-0.6B",
    input="The quick brown fox jumps over the lazy dog.",
)

print(response.data[0].embedding)

How to use the Qwen3 Embedding 0.6B API

  1. 1

    Create a ModelSheep account and copy an API key from the dashboard.

  2. 2

    Point the OpenAI SDK at the base url https://api.modelsheep.com and set model to Qwen/Qwen3-Embedding-0.6B.

  3. 3

    Call /embeddings with your text, prefix each query with a one-sentence instruction to keep retrieval accuracy, and read back a vector of 1024 floats.

What Qwen3 Embedding 0.6B is

Qwen3 Embedding 0.6B is the smallest of the three Qwen3 embedding models. All three build on the Qwen3 foundation models, read up to 33K tokens, and cover more than 100 languages, including programming languages. This model returns a narrower vector than the 4B and the 8B, and it scores lower on MTEB multilingual v2. It costs less per million tokens, and its narrower vector needs less index memory.

What it does well

  • Builds a semantic search index for text in over 100 languages, including
  • Embeds millions of text chunks for a retrieval augmented generation (RAG)
  • Groups tickets, reviews, or log lines by meaning for clustering and

What it is not for

  • Ranking a shortlist. The model returns vectors, not scores for text pairs.
  • Work that puts accuracy first. This model scores below Qwen3 Embedding 4B and

Calling it

Call POST /embeddings with model set to Qwen/Qwen3-Embedding-0.6B, and send one string or an array of strings. Set dimensions to shorten the vector, down to 32, which saves index memory and costs some accuracy. Prefix each query with a one-sentence instruction and leave the stored documents plain, because Qwen measures a drop of 1 to 5 percent in retrieval quality without it.

Qwen/Qwen3-Embedding-0.6B /embeddings

SDKs and languages

Qwen3 Embedding 0.6B answers on an HTTP endpoint, so any language that can post JSON reaches it. These are the ones the box above writes out.

OpenAI SDK
PythonTypeScriptGoJavaC#PHPRust
HTTP
cURLPythonTypeScriptGoRustJavaC#PHP

Specifications

AuthorQwen
Categoryembedding
Acceptstext
Returnsvector
Total parameters0.6B
Active parametersdense, all of them
Score64.34 on MTEB multilingual v2
Languages100+One claim for the whole Qwen3 Embedding series. The total counts programming languages, so the natural language count is smaller and unstated.
Precision servedFP8
Context33K tokens
Vector1024 dimensions
LicenseApache 2.0

Price

Input

$0.004

per million tokens

Output

n/a

this model returns a vector

Against OpenRouter

20%

below the cheapest of 2 providers

The cheapest OpenRouter price for this model was $0.005 in and n/a out, with a median of $0.005 and n/a across the comparable providers. Read on 2026-09-17.

License

Qwen releases the weights under Apache 2.0. Commercial use needs no separate permission, and no vendor terms sit on top of the license.

Similar models

Start using Qwen3 Embedding 0.6B

Point the OpenAI SDK at api.modelsheep.com. Your prompts stay in Germany, and nothing is retained.