curl --request GET \
--url https://api.vertracloud.app/v1/users/@me \
--header 'Authorization: Bearer <token>'
{
"status": "success or error",
"response": {
"plan_id": "<string>",
"applications": [
{
"owner_plan_id": "<string>",
"type": "<string>",
"status": "<string>",
"cluster": "<string>",
"language": "<string>",
"subdomain": "<string>",
"custom_domain": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"last_commit": "2023-11-07T05:31:56Z",
"last_backup": "2023-11-07T05:31:56Z"
}
],
"databases": [
{
"owner_plan_id": "<string>",
"type": "<string>",
"plan_id": "<string>",
"cluster": "<string>",
"status": "<string>",
"duration": 30,
"host": "<string>",
"port": "6379",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"purchased_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"last_backup": "2023-11-07T05:31:56Z"
}
],
"plan": {
"id": "<string>",
"name": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"duration": 30,
"memory": {
"limit": 123,
"used": 123
}
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
Returns the main data of all applications, databases, and information about the authenticated user’s plan.
curl --request GET \
--url https://api.vertracloud.app/v1/users/@me \
--header 'Authorization: Bearer <token>'
{
"status": "success or error",
"response": {
"plan_id": "<string>",
"applications": [
{
"owner_plan_id": "<string>",
"type": "<string>",
"status": "<string>",
"cluster": "<string>",
"language": "<string>",
"subdomain": "<string>",
"custom_domain": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"last_commit": "2023-11-07T05:31:56Z",
"last_backup": "2023-11-07T05:31:56Z"
}
],
"databases": [
{
"owner_plan_id": "<string>",
"type": "<string>",
"plan_id": "<string>",
"cluster": "<string>",
"status": "<string>",
"duration": 30,
"host": "<string>",
"port": "6379",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"purchased_at": "2023-11-07T05:31:56Z",
"expires_at": "2023-11-07T05:31:56Z",
"last_backup": "2023-11-07T05:31:56Z"
}
],
"plan": {
"id": "<string>",
"name": "<string>",
"expires_at": "2023-11-07T05:31:56Z",
"duration": 30,
"memory": {
"limit": 123,
"used": 123
}
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
User information including applications, databases, and plan details.
The response is of type object
.