Skip to main content
Use this endpoint to fetch the static configuration details of any application you own. The response includes the application’s display name, unique ID, owner identifier, hosting cluster, RAM allocation, programming language, and any attached domain. This is useful for building dashboards, auditing your deployments, or confirming configuration before running further operations.

Endpoint

GET https://api.virtuscloud.app/v2/apps/{app_id}

Path parameters

app_id
string
required
The unique ID of the application. You can find this in the URL of your application’s dashboard page on Virtus Cloud.

Request headers

Authorization
string
required
Your Virtus Cloud API key. See Authentication for details.

Response

status
string
Indicates whether the request succeeded. Returns "success" on a successful call.
response
object
The application configuration object.

Code example

curl --request GET \
  --url https://api.virtuscloud.app/v2/apps/<app_id> \
  --header "Authorization: <your_api_key>"

Response example

{
  "status": "success",
  "response": {
    "name": "Best bot forever",
    "id": "64d0c750212742ca8704fb458c9771af",
    "owner": "3133971456989594464",
    "cluster": "fl-micron-1",
    "ram": 1024,
    "language": "rust",
    "domain": null,
    "custom": null
  }
}