## Fetch all apps **get** `/accounts/{account_id}/realtime/kit/apps` Fetch all apps for your account ### Path Parameters - `account_id: string` The account identifier tag. ### Returns - `data: optional array of object { id, created_at, name }` - `id: optional string` - `created_at: optional string` - `name: optional string` - `success: optional boolean` ### Example ```http curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/realtime/kit/apps \ -H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" ``` #### Response ```json { "data": [ { "created_at": "2025-01-01T08:16:40.644Z", "id": "my-app-id", "name": "my-first-app" } ], "success": true } ```