{ "opencollection": "1.0.0", "info": { "name": "Clerk Backend Account Portal Clients API", "version": "2025-11-10" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Clients", "type": "folder" }, "items": [ { "info": { "name": "List All Clients", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/clients", "params": [ { "name": "paginated", "value": "", "type": "query", "description": "Whether to paginate the results.\nIf true, the results will be paginated.\nIf false, the results will not be paginated." }, { "name": "limit", "value": "", "type": "query", "description": "Applies a limit to the number of results returned.\nCan be used for paginating the results together with `offset`." }, { "name": "offset", "value": "", "type": "query", "description": "Skip the first `offset` results when paginating.\nNeeds to be an integer greater or equal to zero.\nTo be used in conjunction with `limit`." } ] }, "docs": "Returns a list of all clients. The clients are returned sorted by creation date,\nwith the newest clients appearing first.\nWarning: the endpoint is being deprecated and will be removed in future versions." }, { "info": { "name": "Verify a Client", "type": "http" }, "http": { "method": "POST", "url": "https://api.clerk.com/v1/clients/verify", "body": { "type": "json", "data": "{}" } }, "docs": "Verifies the client in the provided token" }, { "info": { "name": "Get a Client", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/clients/:client_id", "params": [ { "name": "client_id", "value": "", "type": "path", "description": "Client ID." } ] }, "docs": "Returns the details of a client." } ] } ], "bundled": true }