API Reference

Users

Show information about the current user and the remaining credits.

Show user

Show the current user.

GEThttps://api.cloudconvert.com/v2/users/me

Authentication

Authorization
header required
The Authorization header expects a Bearer token with the user.read scope.

Response

The current user:

id
string
The ID of the user.
username
string
The username of the user.
email
string
The email address of the user.
credits
integer
Remaining conversion credits.
created_at
string
ISO8601 timestamp when the user was created.

Example Response

{
  "data": {
    "id": 1,
    "username": "Username",
    "email": "me@example.com",
    "created_at": "2018-12-01T22:26:29+00:00",
    "credits": 4434,
    "links": {
      "self": "https://api.cloudconvert.com/v2/users/1"
    }
  }
}