---
title: "Get versions in branch"
method: GET
path: "/groups/{groupId}/artifacts/{artifactId}/branches/{branchId}/versions"
tags: ["Branches"]
---

# Get versions in branch

`GET /groups/{groupId}/artifacts/{artifactId}/branches/{branchId}/versions`

Get a list of all versions in the branch.  Returns a list of version identifiers in the branch, 
ordered from the latest (tip of the branch) to the oldest.

This operation can fail for the following reasons:
* No artifact with this `groupId` and `artifactId` exists (HTTP error `404`)
* No branch with this `branchId` exists (HTTP error `404`)
* A server error occurred (HTTP error `500`)

## Query parameters

- `offset` integer
- `limit` integer

## Response `200`

The list of versions in the branch.

- VersionSearchResults — Describes the response received when searching for artifacts.
  - `count` integer, required — The total number of versions that matched the query (may be more than the number of versions returned in the result set).
  - `versions` SearchedVersion[], required — The collection of artifact versions returned in the result set.
    - `name` string
    - `description` string
    - `createdOn` string, date-time, required
    - `owner` string, required
    - `artifactType` string, required
    - `state` 'ENABLED' | 'DISABLED' | 'DEPRECATED' | 'DRAFT' | 'SUNSET', required — Describes the state of an artifact or artifact version. * ENABLED * DISABLED * DEPRECATED * DRAFT * SUNSET — Signals that a migration deadline has passed and the version will be removed. Requires transitioning through DEPRECATED first. Added in 3.3.0.
    - `globalId` integer, required
    - `version` string, required — A single version of an artifact. Can be provided by the client when creating a new version, or it can be server-generated. The value can be any string unique to the artifact, but it is recommended to use a simple integer or a semver value.
    - `contentId` integer, required
    - `artifactId` string, required — The ID of a single artifact.
    - `groupId` string — An ID of a single artifact group.
    - `modifiedBy` string
    - `modifiedOn` string, date-time
    - `labels` Labels — User-defined name-value pairs. Name and value must be strings.

## Other responses

- `401` — Common response for all operations that can return a `401` error indicating authentication is required.
- `403` — Common response for all operations that can return a `403` error indicating the user is authenticated but not authorized.
- `404` — Common response for all operations that can return a `404` error.
- `500` — Common response for all operations that can fail with an unexpected server error.

---

[API](https://skmtc.net/apicurio/apis/apicurio-registry-api-v3.md) · [All operations](https://skmtc.net/apicurio/apis/apicurio-registry-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/apicurio/apicurio-registry-api-v3/revisions/c39cb56d7dbc/schema)
