> ## 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.

# Get Application Info

> Retrieve technical information about your application.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  The API key for your account. You can find this in your [account settings](https://squarecloud.app/en/account/security).
</ParamField>

This endpoint returns an application's identity and configuration: its name, owner, cluster, allocated RAM, programming language, and DNS setup. It is the endpoint to call when you need to look up an application's metadata before acting on it, for example to confirm which cluster it lives on or which subdomain it is reachable at.

Access is scoped to the caller: if the application belongs to a workspace you are a member of, it is returned automatically without any extra parameter. For live resource usage instead of static metadata, see [Get Application Status](/en/api-reference/endpoint/apps/status); for configured hostnames across your whole account, see [List Domains](/en/api-reference/endpoint/apps/domains).

### Parameters

<ParamField path="app_id" type="string" placeholder="Application ID" required>
  The ID of the application. You can find this in the URL of your application's dashboard.
</ParamField>

### Response

<ResponseField name="status" type="string">
  Indicates whether the call was successful.. `success` if successful, `error` if not.
</ResponseField>

<ResponseField name="response" type="object">
  The contents of the response.

  <Expandable title="Toggle object">
    <ResponseField name="name" type="string">
      The application's name.
    </ResponseField>

    <ResponseField name="id" type="string">
      The application's ID.
    </ResponseField>

    <ResponseField name="owner" type="string">
      The ID of the application owner.
    </ResponseField>

    <ResponseField name="cluster" type="string">
      The application's cluster.
    </ResponseField>

    <ResponseField name="ram" type="number">
      The application's RAM usage in MB.
    </ResponseField>

    <ResponseField name="language" type="string">
      The application's programming language.
    </ResponseField>

    <ResponseField name="domain" type="string">
      The application's domain (null if not applicable).
    </ResponseField>

    <ResponseField name="custom" type="string">
      Custom information about the application (null if not applicable).
    </ResponseField>

    <ResponseField name="created_at" type="date">
      The application's creation date.
    </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>
