cd /news/ai-search/what-i-learned-building-a-12-languag… · home topics ai-search article
[ARTICLE · art-135074] src=dev.to ↗ pub= topic=ai-search verified=true sentiment=↑ positive

What I learned building a 12-language AI product search for AliExpress

A developer built OneFindMe, a free multilingual search layer for AliExpress that resolves shopping intent to a canonical product query before translating, rather than translating raw phrases. The system trims descriptive queries to a product noun plus one or two qualifiers, ranks candidates by real order volume with a light penalty for unreviewed listings, and caches query resolution to cut latency. It supports 12 languages and applies locale-specific filtering for shipping thresholds and regional defaults.

by read2 min views1 publishedSep 20, 2026

AliExpress has one of the largest product catalogs on the planet, but its search

assumes you already know the exact English keyword. If a shopper can only describe what they

want — "that little stone thing for face massage" — the results collapse into noise. I spent a

while building OneFindMe, a free multilingual search layer that sits in front of AliExpress, and these were the lessons that actually moved the needle.

Naive translation is a trap. "לק ג'ל" (Hebrew) machine-translates to "gel polish", which on

AliExpress surfaces floor lacquer as often as nail products. The fix was to resolve the shopping

intent to a canonical product query first, then translate that — not translate the raw phrase.

A small curated keyword map beat the general model for the high-traffic terms, because the model

kept inventing plausible-but-wrong category ids.

Long, descriptive queries rank worse than short ones on the marketplace API. The product noun has

to lead. "comfortable running shoes for wide feet women" performs far worse than "wide running

shoes". So the pipeline trims to the product noun + one or two qualifiers before it ever hits the

API.

The cheapest listing is almost never the best answer. Sorting candidates by real order volume,

then lightly penalising listings with no reviews, produced results people actually clicked. Price

is a filter, not a ranking signal.

Product availability changes hourly, but the translation of "wireless earbuds" into a good query

does not. Caching the query resolution (and letting unknown terms cache their translation on

first use, so the second shopper gets an instant answer) cut latency dramatically without serving

stale stock.

The same query needs different handling per country: shipping thresholds, which categories pay,

even modesty defaults in some regions where the marketplace's own "relevance" surfaces things a

shopper did not ask for. Filtering the junk while never filtering a legitimate intent turned out

to be the hardest, most locale-specific part.

If you want to see the result, OneFindMe is live and free — type what you want in any of 12 languages and it does the translating, trimming, and ranking described above. Happy to answer

questions about any of these in the comments.

── more in #ai-search 4 stories · sorted by recency
── more on @onefindme 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/what-i-learned-build…] indexed:0 read:2min 2026-09-20 ·