---
title: "List model configurations"
method: GET
path: "/projects/{projectId}/configs"
tags: ["ConfigService"]
---

# List model configurations

`GET /projects/{projectId}/configs`

Lists production-ready configuration revisions compatible with a reference model. Specify the model with `referenceModel` or the deprecated `referenceModelId`; if both are supplied, they must identify the same model. Results include public configurations and configurations owned by the specified project.

## Path parameters

- `projectId` string, required — Project identifier.

## Query parameters

- `referenceModelId` string — Deprecated. Use `referenceModel`. Reference model identifier filter; if both are set, they must agree.
- `referenceModel` string — Model resource-name filter using `projects/{projectId}/models/{modelId}`; alternative to `referenceModelId`. If both are set, they must agree.
- `limit` integer — Maximum number of results to return.
- `after` string — Cursor from a previous list response.

## Response `200`

OK

- DEListProjectConfigsResponse — Model-compatible config revisions and pagination metadata.
  - `data` DEModelConfig[], required — The list of model configs.
    - `id` string, required — Config revision identifier.
    - `certifications` DECertification[], required — Model, hardware, and runtime combinations certified for this config revision.
      - `target` 'CERTIFICATION_TARGET_DE_SERVERLESS' | 'CERTIFICATION_TARGET_MRE', required — Product or serving environment for which the combination was evaluated.
      - `certificationType` 'CERTIFICATION_TYPE_CERTIFIED' | 'CERTIFICATION_TYPE_UNCERTIFIED', required — Whether the model and config combination passed certification.
      - `certifiedAt` string, date-time, required — Time when the certification decision was recorded.
      - `certifiedBy` string, required — Service or reviewer that recorded the certification.
      - `notes` string — Human-readable certification notes or limitations.
      - `model` string, required — Resource name of the certified model.
      - `modelRevisionId` string, required — Revision identifier of the certified model.
      - `draftModel` string — Resource name of the certified draft model.
      - `draftModelRevisionId` string — Revision identifier of the certified draft model.
    - `referenceModelId` string, required — Deprecated. Use `referenceModel`. Reference model identifier.
    - `selectors` DESelector[], required — Hardware and runtime selectors used to place and configure replicas.
      - `key` string, required — Selector name, such as GPU type, GPU count, or optimization profile.
      - `value` string, required — Required value for the selector.
    - `projectId` string, required — ID of the project that owns the config revision. Public configs may be owned by a different project than the deployment.
    - `referenceModel` string, required — Resource name of the referenced model, using `projects/{modelProject}/models/{modelId}`.
    - `draftModel` string — Resource name of the draft model, using `projects/{draftProject}/models/{modelId}`; empty when speculative decoding is not enabled.
  - `next_cursor` string — Cursor for the next page. Null if there are no more results.
  - `object` 'list', required — Object type. Always `list`.

## Other responses

- `default` — Default error response

---

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