---
title: "Routing Memory Status"
method: GET
path: "/v1/routing/status"
tags: ["routing"]
---

# Routing Memory Status

`GET /v1/routing/status`

Report how warm one user's routing memory is, per pool.

``user_id`` is required rather than optional because there is no aggregate
answer: warmth is per user, and a total across users would describe a pool
that no request ever votes over.

## Query parameters

- `user_id` string, required — Whose routing memory to report on.

## Response `200`

Successful Response

- RouterStatus — How warm this user's routing memory is, and what depends on it. Routing memory has no single warmth: it is a set of independent pools. ``default_pool`` is what a request with no ``Otari-Router-Task`` header votes over (every record the user has, labeled or not) and ``tasks`` lists each partition, which only requests carrying that label use. Each crosses ``seed_count`` on its own.
  - `alpha` number, required
  - `confidence_floor` number, required
  - `default_pool` PoolStatus, required
    - `records` integer, required
    - `warm` boolean, required
  - `embedding_model` string, required
  - `granularity` string, required
  - `k` integer, required
  - `policies` LearnedPolicy[], required
    - `backend` string, required
    - `candidates` string[], required
    - `default_target` string, required
    - `name` string, required
  - `seed_count` integer, required
  - `tasks` TaskPool[], required
    - `records` integer, required
    - `task_id` string, required
    - `warm` boolean, required
  - `user_id` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/mozilla-ai/apis/otari.md) · [All operations](https://skmtc.net/mozilla-ai/apis/otari/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mozilla-ai/otari/revisions/cea76e85cdac/schema)
