curl --request GET \
--url https://api.ionworks.com/cells/{cell_spec_id}/parameterized_modelsimport requests
url = "https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}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
model_id : str | None
Base model to narrow to, matched exactly. Composes with either scope —
e.g. every parameterized model in a project that derives from one model.
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 to both scopes. Values use
Supabase operator syntax and are validated by the field policy — 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 to both scopes.
q : str | None
Free-text search on the model name plus a prefix full-text match,
matching the global search. Applies to both scopes and composes with
the name / description column filters.
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.
curl --request GET \
--url https://api.ionworks.com/cells/{cell_spec_id}/parameterized_modelsimport requests
url = "https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ionworks.com/cells/{cell_spec_id}/parameterized_models")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Path Parameters
Query Parameters
name, created_at asc, desc 1 <= x <= 1000x >= 0Free-text search on parameterized model name.
Response
Successful Response
Was this page helpful?