Skip to main content
GET
/
public
/
me
Get current user profile
curl --request GET \
  --url https://api.userplane.com/api/v1/public/me \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "data": {
    "user": {
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "emailVerified": true,
      "image": "<string>",
      "createdAt": "2023-11-07T05:31:56Z"
    },
    "stats": {
      "workspaces": 1,
      "recordings": 1,
      "links": 1
    }
  }
}
Returns the profile and aggregate statistics for the user associated with the API key.

Errors

This endpoint only returns common authentication errors.

List Workspaces

Retrieve the workspaces you belong to

Authentication

API key authentication and scoping

Quickstart

Make your first API call step by step

Error Handling

Handle authentication and authorization errors

Authorizations

Authorization
string
header
required

API key with uspl_ prefix. Create keys at dash.userplane.io/_/account?tab=developers

Response

OK

message
string
required
data
object
required