Skip to main content
GET
https://{host}/me/v1
/
authentication-methods
Get a list of authentication methods
curl --request GET \
  --url https://{host}/me/v1/authentication-methods \
  --header 'Authorization: Bearer <token>'
{
  "authentication_methods": [
    {
      "id": "email|dev_XXXXXXXXXXXXXXXX",
      "type": "email",
      "confirmed": true,
      "email": "user@example.com",
      "usage": [
        "secondary"
      ],
      "created_at": "2025-01-15T10:30:00.000Z"
    },
    {
      "id": "phone|dev_YYYYYYYYYYYYYYYY",
      "type": "phone",
      "confirmed": true,
      "phone_number": "+15551234567",
      "preferred_authentication_method": "sms",
      "usage": [
        "secondary"
      ],
      "created_at": "2025-01-16T14:00:00.000Z"
    },
    {
      "id": "totp|dev_ZZZZZZZZZZZZZZZZ",
      "type": "totp",
      "confirmed": true,
      "usage": [
        "secondary"
      ],
      "created_at": "2025-02-01T09:15:00.000Z"
    },
    {
      "id": "passkey|dev_AAAAAAAAAAAAAAAA",
      "type": "passkey",
      "credential_device_type": "multi_device",
      "credential_backed_up": true,
      "identity_user_id": "auth0|507f1f77bcf86cd799439011",
      "key_id": "dGVzdC1rZXktaWQ",
      "public_key": "pQECAyYgASFYI...",
      "transports": [
        "internal"
      ],
      "user_agent": "Chrome 131.0.0 / Mac OS X 10.15.7",
      "user_handle": "YXV0aDB8NTA3ZjFmNzdiY2Y4NmNkNzk5NDM5MDEx",
      "relying_party_id": "example.auth0.com",
      "usage": [
        "primary"
      ],
      "created_at": "2025-03-10T08:00:00.000Z"
    },
    {
      "id": "password|dXNlci0xMjM",
      "type": "password",
      "identity_user_id": "auth0|507f1f77bcf86cd799439011",
      "usage": [
        "primary"
      ],
      "created_at": "2024-06-01T12:00:00.000Z"
    },
    {
      "id": "webauthn-platform|dev_BBBBBBBBBBBBBBBB",
      "type": "webauthn-platform",
      "confirmed": true,
      "key_id": "dGVzdC1wbGF0Zm9ybS1rZXk",
      "public_key": "pQECAyYgASFYI...",
      "usage": [
        "secondary"
      ],
      "created_at": "2025-02-20T11:00:00.000Z"
    },
    {
      "id": "webauthn-roaming|dev_CCCCCCCCCCCCCCCC",
      "type": "webauthn-roaming",
      "confirmed": true,
      "key_id": "dGVzdC1yb2FtaW5nLWtleQ",
      "public_key": "pQECAyYgASFYI...",
      "usage": [
        "secondary"
      ],
      "created_at": "2025-02-25T16:45:00.000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer and DPoP tokens are supported depending on the API configuration

Query Parameters

type
enum<string>

Filter authentication methods by type Authentication method type (factor)

Available options:
password,
passkey,
webauthn-platform,
webauthn-roaming,
totp,
phone,
email,
push-notification,
recovery-code

Response

Successfully retrieved authentication methods

authentication_methods
(password · object | passkey · object | recovery-code · object | push-notification · object | totp · object | webauthn-platform · object | webauthn-roaming · object | phone · object | email · object)[]
required
Maximum array length: 20