v1

latestOpenAPI 3.0.3raw.githubusercontent.com2023-03-2663438.1 KB
v1beta/user

account

Get information about the account associated with the provided API key - deprecated, use v1/user/account instead

get/user/account

Response

OK response.

emailstring email required

The user's email

idstring required

The user's ID

profile_picturestring uri

The user's profile picture

Example response

{
  "email": "example@stability.ai",
  "id": "user-1234",
  "organizations": [
    {
      "id": "org-5678",
      "name": "Another Organization",
      "role": "MEMBER",
      "is_default": true
    },
    {
      "id": "org-1234",
      "name": "My Organization",
      "role": "MEMBER",
      "is_default": false
    }
  ],
  "profile_picture": "https://api.stability.ai/example.png"
}