GET
/
v1
/
users
/
@me
User Information
curl --request GET \
  --url https://api.vertracloud.app/v1/users/@me \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "response": {
    "id": "1085944713435160717",
    "email": "[email protected]",
    "name": "test",
    "provider": "discord",
    "plan_id": 1,
    "plan": {
      "id": 1,
      "name": "free",
      "expires_at": null,
      "duration": 0,
      "memory": {
        "limit": 128,
        "used": 128
      }
    },
    "applications": [
      {
        "id": "v111d4af8cd74272a284831fbae14a8v",
        "cluster": 1,
        "name": "Simple API",
        "description": "I have a description :)",
        "status": "up",
        "type": 1,
        "ram": 128,
        "language": "nodejs",
        "subdomain": null,
        "custom_domain": null,
        "owner_id": "1085944713435160717",
        "created_at": "2025-08-09T15:51:47.234Z",
        "updated_at": "2025-08-11T15:06:41.449Z",
        "last_commit": "2025-08-09T15:51:47.234Z",
        "last_backup": null,
        "last_deploy": null,
        "owner_plan_id": 1
      }
    ],
    "databases": [
      {
        "id": "v41806687fe6488884a464d1dc06692v",
        "cluster": 1,
        "name": "Vertra v4180668",
        "description": "MongoDB Database",
        "status": "up",
        "type": 2,
        "ram": 2048,
        "storage": 1024,
        "host": "vertra-cloud-mongodb-v41806687fe6488884a464d1dc06692v.db.vertraweb.app",
        "port": 27017,
        "owner_id": "1085944713435160717",
        "plan_id": 5,
        "duration": 30,
        "purchased_at": "2025-08-09T22:00:54.785Z",
        "expires_at": "2025-09-08T22:00:54.785Z",
        "created_at": "2025-08-09T22:00:54.785Z",
        "updated_at": "2025-08-09T22:13:38.489Z",
        "last_backup": null,
        "owner_plan_id": 1
      }
    ],
    "created_at": "2025-08-08T01:26:04.784Z",
    "updated_at": "2025-08-14T22:10:31.220Z"
  }
}

Response

status
string
Indicates whether the call was successful. success if successful, error if not.
response
object
The contents of the response.
{
  "status": "success",
  "response": {
    "id": "1085944713435160717",
    "email": "[email protected]",
    "name": "test",
    "provider": "discord",
    "plan_id": 1,
    "plan": {
      "id": 1,
      "name": "free",
      "expires_at": null,
      "duration": 0,
      "memory": {
        "limit": 128,
        "used": 128
      }
    },
    "applications": [
      {
        "id": "v111d4af8cd74272a284831fbae14a8v",
        "cluster": 1,
        "name": "Simple API",
        "description": "I have a description :)",
        "status": "up",
        "type": 1,
        "ram": 128,
        "language": "nodejs",
        "subdomain": null,
        "custom_domain": null,
        "owner_id": "1085944713435160717",
        "created_at": "2025-08-09T15:51:47.234Z",
        "updated_at": "2025-08-11T15:06:41.449Z",
        "last_commit": "2025-08-09T15:51:47.234Z",
        "last_backup": null,
        "last_deploy": null,
        "owner_plan_id": 1
      }
    ],
    "databases": [
      {
        "id": "v41806687fe6488884a464d1dc06692v",
        "cluster": 1,
        "name": "Vertra v4180668",
        "description": "MongoDB Database",
        "status": "up",
        "type": 2,
        "ram": 2048,
        "storage": 1024,
        "host": "vertra-cloud-mongodb-v41806687fe6488884a464d1dc06692v.db.vertraweb.app",
        "port": 27017,
        "owner_id": "1085944713435160717",
        "plan_id": 5,
        "duration": 30,
        "purchased_at": "2025-08-09T22:00:54.785Z",
        "expires_at": "2025-09-08T22:00:54.785Z",
        "created_at": "2025-08-09T22:00:54.785Z",
        "updated_at": "2025-08-09T22:13:38.489Z",
        "last_backup": null,
        "owner_plan_id": 1
      }
    ],
    "created_at": "2025-08-08T01:26:04.784Z",
    "updated_at": "2025-08-14T22:10:31.220Z"
  }
}