---
title: "Get list of artifacts for specific channel"
method: GET
path: "/channels/{channel_name}/artifacts"
tags: ["channels"]
---

# Get list of artifacts for specific channel

`GET /channels/{channel_name}/artifacts`

Retrieve all artifacts for the current channel and passing the ?filter= query will only returns those artifacts in the current channel that match that filter string

## Path parameters

- `channel_name` string, required

## Query parameters

- `offset` integer
- `limit` integer
- `q` string
- `only_names` string[]
- `sort` string[]
- `artifact_family` ArtifactFamily[]
- `platform` string

## Response `200`

get list of packages for channels

- object
  - `total_count` number
  - `items` Artifact[]
    - `name` string
    - `family` 'anaconda_project' | 'anaconda_env' | 'cve' | 'conda' | 'python' | 'cran' | 'notebook' | 'docker' | 'sbom'
    - `channel` string
    - `subchannel` string
    - `download_count` number
    - `privacy` 'private' | 'authenticated' | 'public' — channel privacy channel
    - `file_count` number — number of files (routes) in the artifact
    - `cve_count` number — number of CVE in the artifact files
    - `metadata` object — family specific fields such as base and version
    - `updated_at` string

## Other responses

- `401` — Unauthenticated, no token is provided or token is invalid
- `403` — Access is forbidden
- `404` — The specified resource was not found
- `500` — Internal server error

---

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