List parameterized models for a cell specification or project
List parameterized models with pagination, filtering, and sorting, scoped by cell spec or project.
Provide exactly one scope:
cell_spec_idlists models for a single cell specification. This is the path parameter when called via/cells/{cell_spec_id}/parameterized_models.project_idlists models across every cell specification linked to the project.cell_spec_idmay additionally be passed to narrow a project-scoped query to one cell specification.
Parameters
cell_spec_id : str | None
Cell specification to scope to. Required when project_id is not given.
project_id : str | None
Project to scope to. When set, cell_spec_id is an optional further
filter rather than the primary scope.
name : str | None
Column filter on the model name. Applies only to the cell-spec scope.
Values use Supabase operator syntax and are passed straight through —
e.g. ilike.%alpha% for a case-insensitive substring match. A bare
value falls through to an exact match.
description : str | None
Column filter on the model description. Same operator-syntax semantics
as name and likewise applies only to the cell-spec scope.
order_by :
Column to sort the cell-spec-scoped results by. Defaults to
"created_at".
order :
Sort direction for the cell-spec-scoped results. Defaults to "desc".
limit : int
Maximum number of models to return per page (1-1000). Defaults to 100.
The upper bound is 1000 so callers (e.g. the optimization clone form)
can load every model for a project in one request.
offset : int
Number of models to skip for pagination. Defaults to 0.
Path Parameters
Query Parameters
name, created_at asc, desc 1 <= x <= 1000x >= 0Response
Successful Response