---
title: "Get application versions"
method: GET
path: "/applications/{owner}/{slug}/versions"
tags: ["Applications"]
---

# Get application versions

`GET /applications/{owner}/{slug}/versions`

## Path parameters

- `owner` string, required
- `slug` string, required

## Query parameters

- `page` integer — Page number starting from 1
- `per-page` integer — Number of items per page

## Response `200`

Retrieved

- ApplicationVersionList — A list response from a pagination request
  - `page` integer, required — The current page the pagination request is on
  - `per_page` integer, required — The number of pages per pagination request
  - `next_page` integer — The next page, if this on is not the last
  - `page_count` integer, required — The total number of pages
  - `total_count` integer, required — The total number of resources matching the list request
  - `resources` ApplicationVersion[], required
    - `id` string, uuid, required — The application version ID
    - `author` AccountPublic, required
      - `id` string, required
      - `account_type` string, required
      - `name` string, required
      - `display_name` string
      - `description` string
      - `picture_url` string — https://robohash.org/ladybugbot
    - `tag` string, required — The tag for this version of the application
    - `release_notes` string — The release notes for the application version
    - `created_at` string, date-time — The time the application version was created
    - `build_status` BuildStatus, required
      - `status` 'pending' | 'running' | 'success' | 'failure' | 'cancelled' | 'awaiting_package_upload' | 'unknown', required — The status of a build.
      - `created_at` string, date-time — The date and time the build was created
      - `started_at` string, date-time — The date and time the build started
      - `finished_at` string, date-time — The date and time the build finished

## Other responses

- `400` — Invalid request
- `403` — Access forbidden
- `422` — Validation Error
- `500` — Server error

---

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