GET
/
v2
/
account
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

200
application/json
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

The date and time the account was created.

name
string

The name of the account.

user
object

The details of the current user account.