> ## Documentation Index
> Fetch the complete documentation index at: https://docs.squarecloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Anwendungsinformationen abrufen

> Technische Informationen über deine Anwendung abrufen.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  Der API-Schlüssel für Ihr Konto. Sie finden ihn in Ihren [Kontoeinstellungen](https://squarecloud.app/de/account/security).
</ParamField>

### Parameter

<ParamField path="app_id" type="string" placeholder="Application ID" required>
  Die ID der Anwendung. Du findest sie in der URL des Dashboards deiner Anwendung.
</ParamField>

### Antwort

<ResponseField name="status" type="string">
  Gibt an, ob der Aufruf erfolgreich war. `success` bei Erfolg, `error` andernfalls.
</ResponseField>

<ResponseField name="response" type="object">
  Der Inhalt der Antwort.

  <Expandable title="Objekt umschalten">
    <ResponseField name="name" type="string">
      Der Name der Anwendung.
    </ResponseField>

    <ResponseField name="id" type="string">
      Die ID der Anwendung.
    </ResponseField>

    <ResponseField name="owner" type="string">
      Die ID des Anwendungseigentümers.
    </ResponseField>

    <ResponseField name="cluster" type="string">
      Das Cluster der Anwendung.
    </ResponseField>

    <ResponseField name="ram" type="number">
      Die RAM-Auslastung der Anwendung in MB.
    </ResponseField>

    <ResponseField name="language" type="string">
      Die Programmiersprache der Anwendung.
    </ResponseField>

    <ResponseField name="domain" type="string">
      Die Domain der Anwendung (null, falls nicht zutreffend).
    </ResponseField>

    <ResponseField name="custom" type="string">
      Benutzerdefinierte Informationen über die Anwendung (null, falls nicht zutreffend).
    </ResponseField>

    <ResponseField name="created_at" type="date">
      Das Erstellungsdatum der Anwendung.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "status": "success",
    "response": {
      "name": "Best bot forever",
      "id": "64d0c750212742ca8704fb458c9771af",
      "owner": "3133971456989594464",
      "cluster": "nasa-cluster",
      "ram": 1024,
      "language": "rust",
      "domain": null,
      "custom": null,
      "created_at": "2023-02-20T14:30:00Z"
    }
  }
  ```
</ResponseExample>
