## Fetch all apps `realtime_kit.apps.get(AppGetParams**kwargs) -> AppGetResponse` **get** `/accounts/{account_id}/realtime/kit/apps` Fetch all apps for your account ### Parameters - `account_id: str` The account identifier tag. - `page_no: Optional[int]` The page number from which you want your page search results to be displayed. - `per_page: Optional[int]` Number of results per page. - `search: Optional[str]` Search string that matches apps by name. - `sort_order: Optional[Literal["ASC", "DESC"]]` Sort order for apps by creation time. - `"ASC"` - `"DESC"` ### Returns - `class AppGetResponse: …` - `data: Optional[List[Data]]` - `id: Optional[str]` - `created_at: Optional[datetime]` - `name: Optional[str]` - `paging: Optional[Paging]` - `end_offset: Optional[float]` - `start_offset: Optional[float]` - `total_count: Optional[float]` - `success: Optional[bool]` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) app = client.realtime_kit.apps.get( account_id="023e105f4ecef8ad9ca31a8372d0c353", ) print(app.data) ``` #### Response ```json { "data": [ { "created_at": "2025-01-01T08:16:40.644Z", "id": "14a396e7-ca44-4937-bf1f-050a69118543", "name": "my-first-app" } ], "paging": { "end_offset": 1, "start_offset": 1, "total_count": 1 }, "success": true } ```