Home
Search…
3.0.0
Welcome to Clerk API Reference
Clerk's Guides and Docs
Questions? We're here for you.
API Reference
Backend API
Introduction
Allowlist Identifiers
Clients
Invitations
Emails
Organizations
Organization Invitations
Organization Memberships
Redirect URLs
Sessions
Sign In Tokens
SMS Messages
Users
Beta Features
Frontend API
Powered By
GitBook
Clients
This object represents a client created by a user. Clients are unauthenticated objects that are used to track the current sign in, sign up, and an array of sessions.
Available requests
GET
/v1/clients/:id
GET
/v1/clients
POST
/v1/clients/verify
Example client schema
1
{
2
"object"
:
"client"
,
3
"id"
:
"client_1q8u5xxKGAaflDktdY1IXxvK36S"
,
4
"session_ids"
:
[
5
"sess_1q8u7QQhKOGRitdFGreHB00443j"
6
],
7
"sign_in_attempt_id"
:
null
,
8
"sign_up_attempt_id"
:
null
,
9
"last_active_session_id"
:
"sess_1q8u7QQhKOGRitdFGreHB00443j"
,
10
"created_at"
:
1616473358
,
11
"updated_at"
:
1616473358
12
}
Copied!
get
https://api.clerk.dev
/v1/clients/:id
Retrieve a client
get
https://api.clerk.dev
/v1/clients
List all clients
post
https://api.clerk.dev
/v1/clients/verify
Verify a client
Previous
Allowlist Identifiers
Next
Invitations
Last modified
3mo ago
Copy link
Contents
Available requests
Example client schema
get
Retrieve a client
get
List all clients
post
Verify a client