Skip to content
Start here

Fetch all apps

realtime_kit.apps.get(AppGetParams**kwargs) -> AppGetResponse
GET/accounts/{account_id}/realtime/kit/apps

Fetch all apps for your account

Security

API Token

The preferred authorization scheme for interacting with the Cloudflare API. Create a token.

Example:Authorization: Bearer Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY
Accepted Permissions (at least one required)
Realtime AdminRealtime
ParametersExpand Collapse
account_id: str

The account identifier tag.

maxLength32
ReturnsExpand Collapse
class AppGetResponse:
data: Optional[List[Data]]
id: Optional[str]
created_at: Optional[str]
name: Optional[str]
success: Optional[bool]

Fetch all apps

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)
{
  "data": [
    {
      "created_at": "2025-01-01T08:16:40.644Z",
      "id": "my-app-id",
      "name": "my-first-app"
    }
  ],
  "success": true
}
Returns Examples
{
  "data": [
    {
      "created_at": "2025-01-01T08:16:40.644Z",
      "id": "my-app-id",
      "name": "my-first-app"
    }
  ],
  "success": true
}