---
title: "List Profiles"
method: GET
path: "/profiles"
tags: ["Profiles"]
---

# List Profiles

`GET /profiles`

Return the associated Profiles for the current Account.
The paginated results default to the maximum limit of 1,000 Profiles, unless otherwise specified with the `limit` parameter.
Every paginated response contains a `next_page` field until the last page is reached.
Pass the `next_page` value into the `page_cursor` field of the next request to retrieve the next page of results.

## Query parameters

- `created_at.lt` string, date-time
- `created_at.lte` string, date-time
- `created_at.eq` string, date-time
- `created_at.gte` string, date-time
- `created_at.gt` string, date-time
- `limit` integer
- `order` 'DESC' | 'ASC'
- `order_by` 'CREATED_AT'
- `page_cursor` string
- `nickname` string
- `ids` string[]

## Response `200`

A successful response.

- ListProfilesResponse
  - `items` Profile[]
    - `id` string, required
    - `nickname` string, required
    - `type` 'NORMAL' | 'DEFAULT', required — The profile type. - NORMAL: A client-created profile. All Profiles created using the `CreateProfile` endpoint are of this type. - DEFAULT: A system-generated profile.
    - `description` string
    - `account_id` string
  - `next_page_cursor` string — Cursor token required for fetching the next page.

---

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