---
title: "List students"
method: GET
path: "/v2/students/"
tags: ["Students"]
---

# List students

`GET /v2/students/`

List students for the authenticated organization.

**Required OAuth scope:** `students:read`

## Query parameters

- `filter[email]` string, nullable — Exact email match (case-insensitive).
- `filter[first_name]` string, nullable — Exact first name match.
- `filter[last_name]` string, nullable — Exact last name match.
- `filter[is_inactive]` boolean, nullable — Filter by active/inactive status.
- `page[size]` integer — Maximum number of records to return.
- `page[cursor]` string, nullable — Opaque cursor from the previous page's links.next.

## Response `200`

OK

- PaginatedListResponseStudentResource
  - `data` StudentResource[], required — The resources on this page, in cursor order.
    - `type` string — Always "students".
    - `id` string, required — Opaque student ID. Use in URL paths.
    - `attributes` StudentAttributes, required — Attributes of a student resource object.
      - `email` string, required — Student's email address.
      - `first_name` string, required — Student's given name.
      - `last_name` string, required — Student's family name.
      - `is_inactive` boolean, required — True if the student has been deactivated.
      - `external_id` string, required — Stable UUID5 for cross-system correlation.
      - `date_joined` string, date-time, required — Timestamp when the student joined.
    - `relationships` object, nullable — Related resource links.
    - `links` object, nullable — Self and related links.
  - `meta` object, nullable — Pagination metadata, e.g. {"page_size": 25}.
  - `links` object, nullable — Pagination links, e.g. {"self": "...", "next": "...", "prev": null}.
  - `has_more` boolean, required — Whether additional pages exist after this one.
  - `next_cursor` string, nullable — Opaque cursor to pass as ``page[cursor]`` for the next page; null on the last page.
  - `included` object[], nullable — Related resources requested via ?include=. Absent when no include was requested.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found

---

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