Skip to main content
GET
/
v2
/
account
Get account information
curl --request GET \
  --url https://api.usecloudpress.com/v2/account \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "user": {
    "email": "<string>",
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Success

This object represents your Cloudpress account information. It is useful for retrieving the number of credits you have available to export content.

createdAt
string<date-time>

The date and time the account was created.

name
string

The name of the account.

user
object

The details of the current user account.

This object represents a information about a user.

I