---
title: "Get training campaigns"
method: GET
path: "/v1/training-campaigns"
tags: ["Training Campaigns"]
---

# Get training campaigns

`GET /v1/training-campaigns`

Get many training campaigns. 

The query parameter filters are applied as `AND` conditions across different filters. 
If multiple filters are used, the response will include only the training campaigns that satisfy all the filters.

Within a single filter, multiple values are applied as `OR` conditions.

## Query parameters

- `id` string[]
- `status` string[]
- `limit` integer
- `cursor` string

## Response `200`

Success

- object
  - `limit` integer
  - `hasMore` boolean
  - `data` object[]
    - `id` string, required — The unique identifier of a training campaign.
    - `courseName` string, required — The name of the course.
    - `campaignName` string, required — The name of the training campaign.
    - `status` 'ACTIVE' | 'ARCHIVED', required — The status of the training campaign. `ACTIVE` campaigns may be scheduling training now and/or in the future. `ARCHIVED` campaigns have been deactivated and will no longer schedule new training.
    - `initialTrainingAt` string, date-time, required — The date and time when the training campaign is scheduled to start.
    - `nextTrainingAt` string, date-time — The date and time when the next training session is scheduled to start.
    - `deadlineInDays` integer — The number of days before the deadline of the training campaign. The deadline can be calculated as `initialTrainingAt`, plus the number of days specified in this field. If the deadline in days is null, then the training campaign does not have a deadline.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized

---

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