OpenAPI 3.1.02026-08-163864115.7 MB

c363cb2feb95

Users

List

Lists the authenticated user's own passkeys, newest first. The list is always the caller's own; there is no parameter for reading another user's passkeys. Requires a user session: an API key or an OAuth token is refused, because a passkey confirms the account holder before a sensitive action and no app may enumerate one.

get/users/me/passkeys

Query parameters

firstinteger

The number of passkeys to return (default 20, max 100).

afterstring

A cursor; returns passkeys after this position.

lastinteger

The number of passkeys to return from the end of the range.

beforestring

A cursor; returns passkeys before this position.

order'created_at'

The field to sort passkeys by.

direction'asc' | 'desc'

Sort direction.

Response

passkeys listed

Example response

{
  "data": [
    {
      "created_at": "2026-01-01T12:00:00.000Z",
      "credential_id": "bGFwdG9wLWNyZWRlbnRpYWw",
      "id": "wcred_xxxxxxxxxxxxxx",
      "last_used_at": "2026-01-01T12:00:00.000Z",
      "nickname": "MacBook Pro"
    }
  ],
  "page_info": {
    "end_cursor": "WyJjdXJzb3IiLDFd",
    "has_next_page": true,
    "start_cursor": "WyJjdXJzb3IiLDFd"
  }
}