---
title: "Api Response Format Presets List"
method: GET
path: "/api/response-format-presets/"
tags: ["platformApi"]
---

# Api Response Format Presets List

`GET /api/response-format-presets/`

GET/POST /api/response-format-presets/ — list and create presets.

Response-format presets intentionally form a separate resource from
``LLMPreset``. LLM presets snapshot the complete model setup, including
model, tools, and variable values; storing schemas there would couple a
reusable response format to unrelated execution settings and risk applying
those settings when a schema is loaded.

This endpoint instead provides a project-shared schema library. Loading a
preset only returns content for the client to copy into its draft editor;
it does not mutate a prompt or create a live link to the preset. Clients
can POST an edited draft as a new preset, leaving the source unchanged.

## Query parameters

- `page` integer
- `page_size` integer

## Headers

- `Authorization` string, required

## Response `200`

- PaginatedResponseFormatPresetListList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `total_count` integer
  - `current_filters` FilterParamDictPydantic — Pydantic model for FilterParamDict. A dictionary that maps metric names to their filter parameters. Each key is a metric name (str), and each value can be: - A single MetricFilterParamPydantic (one condition) - A List[MetricFilterParamPydantic] (multiple conditions for same metric) - A FilterBundlePydantic (nested filter bundle with connector) Note: Uses extra="allow" for dynamic metric name fields. The __pydantic_extra__ annotation tells Pydantic what types to expect for extra fields, and generates typed additionalProperties in JSON Schema.
  - `filters_data` PaginatedResponseFormatPresetListListFiltersData
  - `results` ResponseFormatPresetList[], required
    - `id` string, required
    - `name` string, required
    - `created_by` Editor, required
      - `id` integer, required
      - `email` string, required
      - `name` string, required
      - `username` string
      - `first_name` string
      - `last_name` string
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required

---

[API](https://skmtc.net/keywordsai/apis/api-reference.md) · [All operations](https://skmtc.net/keywordsai/apis/api-reference/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/keywordsai/api-reference/versions/c26d550029f8/schema)
