---
title: "List project models"
method: GET
path: "/projects/{projectId}/models"
tags: ["VolumeService"]
---

# List project models

`GET /projects/{projectId}/models`

Lists custom model resources owned by the specified project. Use the organization endpoint to list models shared across projects or the supported-model catalog to discover Together-hosted base models.

## Path parameters

- `projectId` string, required — Project identifier.

## Query parameters

- `visibility` 'VISIBILITY_PRIVATE' | 'VISIBILITY_INTERNAL' — Model visibility. Private means it is scoped to the project. Internal means it is scoped to the organization.
- `organizationId` string — Organization whose shared models should be included. Defaults to the authenticated project's organization.
- `limit` integer — Maximum number of models to return.
- `after` string — Cursor from a previous model list response.

## Response `200`

OK

- DEListModelsResponse — Custom model resources and pagination metadata.
  - `data` DEModel[], required — The list of models.
    - `id` string, required — Unique model identifier.
    - `projectId` string, required — ID of the project that owns the model.
    - `organizationId` string, required — ID of the organization that owns the model's project.
    - `name` string, required — Project-qualified model name in the form `<project_slug>/<model_name>`. Create and update requests may use the bare or qualified form.
    - `description` string — Human-readable description of the model and its intended use.
    - `weights` DEModelWeights, required — Architecture, size, precision, and speculative-decoding metadata for model weights.
      - `type` 'WEIGHTS_TYPE_DEFAULT' | 'WEIGHTS_TYPE_SPECULATOR' | 'WEIGHTS_TYPE_ADAPTER' — Role of the weights: full model, speculative draft model, or LoRA adapter.
      - `speculatorMechanism` 'SPECULATOR_MECHANISM_DRAFT' | 'SPECULATOR_MECHANISM_LOOKAHEAD' | 'SPECULATOR_MECHANISM_MTP' — Speculative decoding mechanism for speculator weights.
      - `draftSpeculatorType` 'DRAFT_SPECULATOR_TYPE_EAGLE' | 'DRAFT_SPECULATOR_TYPE_PHOENIX' — Draft-model speculator family for draft speculative decoding.
      - `architecture` string — Model architecture detected from the weight metadata.
      - `contextLength` string — Maximum context length reported by the model metadata.
      - `parameters` DEModelParameters — Model parameter count and precision breakdown.
        - `total` string, required — Total number of parameters in the model weights.
        - `byDtype` DEModelDTypeCount[], required — Parameter counts grouped by numerical data type.
          - `dtype` string, required — Numerical data type, such as `float16`, `bfloat16`, or `int8`.
          - `count` string, required — Number of model parameters stored with this data type.
    - `baseModelId` string — ID of the supported or custom base model from which this model was derived.
    - `baseModel` string — Resource name of the base model, using `projects/{baseProject}/models/{baseModelId}`; empty when the model has no base.
    - `visibility` 'VISIBILITY_PRIVATE' | 'VISIBILITY_INTERNAL', required — Who can discover the model. `VISIBILITY_PRIVATE` restricts it to the project; `VISIBILITY_INTERNAL` shares it with the organization.
  - `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)
