---
title: "Read App"
method: GET
path: "/apps/{app_id}"
tags: ["Apps"]
---

# Read App

`GET /apps/{app_id}`

Retrieve an app by its ID.

Args:
    app_id (str): The ID of the app to retrieve.

Returns:
    ReadAppOutput: The output containing the app's ID and name.

Raises:
    HTTPException: If there is an error retrieving the app or the user does not have permission to access the app.

## Path parameters

- `app_id` string, required

## Response `200`

Successful Response

- ReadAppOutput
  - `app_id` string, required
  - `app_name` string, required
  - `app_type` string, nullable
  - `created_at` string, nullable
  - `updated_at` string, nullable
  - `folder_id` string, nullable

## Other responses

- `422` — Validation Error

## Changes

- **2026-02-13** `72fe88316d15` — 2 info
  - added the optional property `detail/items/ctx` to the response with the `422` status
  - added the optional property `detail/items/input` to the response with the `422` status
- **2026-01-14** `53da4c9de2b7` — 5 info
  - api operation id `create_app` removed and replaced with `read_app`
  - added the optional property `app_type` to the response with the `200` status
  - added the optional property `created_at` to the response with the `200` status
  - added the optional property `folder_id` to the response with the `200` status
  - …1 more
- **2025-11-05** `e62506c24377` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/agenta-ai/apis/agenta-api/changes/apps/:app_id/get.md)

---

[API](https://skmtc.dev/agenta-ai/apis/agenta-api.md) · [All operations](https://skmtc.dev/agenta-ai/apis/agenta-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/agenta-ai/agenta-api/revisions/edbcb02ac8b1/schema)
