Application
Get Application Information
Retrieve technical information about your application.
GET
/
v2
/
apps
/
{app_id}
Header
Path
curl --request GET \
--url https://api.squarecloud.app/v2/apps/{app_id} \
--header 'Authorization: <authorization>'
{
"status": "success",
"response": {
"id": "64d0c750212742ca8704fb458c9771af",
"name": "Best bot forever",
"avatar": "https://cdn.squarecloud.app/avatars/8.png",
"owner": "3133971456989594464",
"cluster": "fl-haswell-1",
"ram": 1024,
"language": "rust",
"domain": null,
"custom": null,
"isWebsite": false,
"gitIntegration": false
}
}
Authorization
string
requiredThe API key for your account. You can find this in your account settings.
app_id
string
requiredThe ID of the application. You can find this in the URL of your application’s dashboard.
Response
status
string
Indicates whether the call was successful. “success” if successful, “error” if not.
code
string
The status code of the response.
response
object
The contents of the response.
Was this page helpful?
curl --request GET \
--url https://api.squarecloud.app/v2/apps/{app_id} \
--header 'Authorization: <authorization>'
{
"status": "success",
"response": {
"id": "64d0c750212742ca8704fb458c9771af",
"name": "Best bot forever",
"avatar": "https://cdn.squarecloud.app/avatars/8.png",
"owner": "3133971456989594464",
"cluster": "fl-haswell-1",
"ram": 1024,
"language": "rust",
"domain": null,
"custom": null,
"isWebsite": false,
"gitIntegration": false
}
}