API Reference
API Endpoints
- GET/v2/users/me
- POST/v2/apps
- GET/v2/apps/status
- GET/v2/service/status
- Application
- Application - File Manager
- Application - Deploy
- Application - Network
- Workspace
- Workspace - Members
- Workspace - Application
API Endpoints
Get information about your account
Get information about your account.
GET
/
v2
/
users
/
me
Copy
Ask AI
curl --request GET \
--url https://api.squarecloud.app/v2/users/me \
--header 'Authorization: <authorization>'
Copy
Ask AI
{
"status": "success",
"response": {
"user": {
"id": "313397145698959364",
"name": "joaootavios",
"email": "joao@squarecloud.app",
"plan": {
"name": "standard",
"memory": {
"limit": 2048,
"available": 1536,
"used": 256
},
"duration": 1732072955446
}
},
"applications": [
{
"name": "Square Example APP",
"id": "446b0b4118634a1c99e73bac9a54e475",
"desc": "This is a example of description",
"ram": 512,
"lang": "javascript",
"domain": "square-example-app.squareweb.app",
"custom": "mydomain.com",
"cluster": "fl-micron-1"
}
]
}
}
The API key for your account. You can find this in your account settings.
Response
Indicates whether the call was successful. success
if successful, error
if not.
The contents of the response.
The application’s name.
The application’s ID.
The application’s description.
The application’s RAM usage.
The application’s language.
The application’s domain.
The application’s custom domain.
The application’s cluster.
Copy
Ask AI
{
"status": "success",
"response": {
"user": {
"id": "313397145698959364",
"name": "joaootavios",
"email": "joao@squarecloud.app",
"plan": {
"name": "standard",
"memory": {
"limit": 2048,
"available": 1536,
"used": 256
},
"duration": 1732072955446
}
},
"applications": [
{
"name": "Square Example APP",
"id": "446b0b4118634a1c99e73bac9a54e475",
"desc": "This is a example of description",
"ram": 512,
"lang": "javascript",
"domain": "square-example-app.squareweb.app",
"custom": "mydomain.com",
"cluster": "fl-micron-1"
}
]
}
}
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.squarecloud.app/v2/users/me \
--header 'Authorization: <authorization>'
Copy
Ask AI
{
"status": "success",
"response": {
"user": {
"id": "313397145698959364",
"name": "joaootavios",
"email": "joao@squarecloud.app",
"plan": {
"name": "standard",
"memory": {
"limit": 2048,
"available": 1536,
"used": 256
},
"duration": 1732072955446
}
},
"applications": [
{
"name": "Square Example APP",
"id": "446b0b4118634a1c99e73bac9a54e475",
"desc": "This is a example of description",
"ram": 512,
"lang": "javascript",
"domain": "square-example-app.squareweb.app",
"custom": "mydomain.com",
"cluster": "fl-micron-1"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.