Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

GET /accounts [public access]

Get list of accounts

Response

Code Block
curl -k -X GET https://api.vsee.me/api_v3/accounts.json

{
  "data": [
    {
      "code": "DEMO-ACCOUNT-LOCAL",
      "name": "DEMO-ACCOUNT-LOCAL",
      
    },
    {
      "code": "DEMO-ACCOUNT-LOCAL",
      "name": "DEMO-ACCOUNT-LOCAL",
      
    },
    ...
  ]
}

GET /accounts/:code [public access]

Get current member’s Account data. Each member is mapped to Account which contains some general settings.

...

Each step has a code field which defines the type of content of the step. See the description below

Parameters

Parameter

Type

Description

code

String

Account’s code or dash (-) for current account

...