Personalized recommendations,
delivered as one API call.
The ranking layer between candidate generation and the recommendations a user sees. Gortex scores every item and fills sponsored slots in one call, so your team ships product instead of running a recommender.
Building a recommendation engine in-house is a standing cost, not a one-time build.
A recommender is never done. Candidate generation, ranking models, feature pipelines, and online serving all drift as catalogs turn over and taste shifts. The team that builds it keeps rebuilding it, on the request path, forever.
One endpoint ranks recommendations and places sponsored slots in the same response.
You send a recipient, a surface, and the candidate set you already retrieved. Gortex returns the personalized order and the sponsored placements together, inside one sub-200ms p99 budget, with a decision id you can audit later.
One request. A personalized set and its sponsored slots.
// Rank a "for you" rail and fill its sponsored slots. $ curl api.gortex.ai/v1/decide \ -H "Authorization: Bearer $GORTEX_KEY" \ -d '{ "recipient": { "id": "u_8120" }, "context": { "surface": "recommendations" }, "items": [ /* 200 candidate items */ ] }' { "ranked": [ /* ordered item IDs */ ], "sponsored": [{ "slot": 3, "price": 0.42 }], "decision_id": "d_01HXZ3M", "trace_id": "t_01HXZ3N" }
Recommendations, answered plainly.
What is a recommendation engine API?
An endpoint that takes a set of candidate items and returns the personalized set a given user should see, ranked for relevance. Gortex places sponsored slots in the same response, so recommendations and monetization resolve together.
Do I need to move my data to use Gortex?
No. You keep candidate generation and send the items you already retrieved. Gortex ranks them into personalized recommendations and returns the order plus sponsored slots. There is no re-platforming.
How fast is a recommendation call?
Ranking and sponsored placement resolve inside one sub-200ms p99 budget, on the request path, so you can call it on every 'for you' render or product view.
See a recommendation decision, live.
The private beta is by invitation. Tell us the surface you recommend on and we will get you a key.