We build decisioning infrastructure
for consumer platforms.

Gortex sits between your feed-construction layer and what your users see. We rank items, fill monetized slots, and ground every decision in operational data accumulated by AI agents running the work below the surface.

p99 latency
< 200ms
sdks
7 (languages)
integration levels
7 (0—7)
status
private (beta)

One endpoint. Ranked decisions, monetized slots, sub-80ms p99.

A versioned REST surface. OpenAPI 3.1 as the source of truth. Every SDK generated from the spec — contract drift across languages is mechanically impossible.

POST /v1/decide
200 OK · 78ms
// One endpoint. One ranked decision.
$ curl api.gortex.ai/v1/decide \
  -H "Authorization: Bearer $GORTEX_KEY" \
  -d '{
    "recipient": { "id": "u_8120" },
    "context":   { "surface": "home_feed" },
    "items":     [ /* 50 candidates */ ]
  }'

{
  "ranked":      [ /* ordered item IDs */ ],
  "sponsored":   [{ "slot": 3, "price": 0.42 }],
  "decision_id": "d_01HXZ3M…",
  "trace_id":    "t_01HXZ3N…"
}