## Read submitted URLs by ID `brand_protection.url_info(BrandProtectionURLInfoParams**kwargs) -> SyncSinglePage[BrandProtectionURLInfoResponse]` **get** `/accounts/{account_id}/brand-protection/url-info` Return submitted URLs based on ID ### Parameters - `account_id: str` ### Returns - `Dict[str, object]` ### 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 ) page = client.brand_protection.url_info( account_id="x", ) page = page.result[0] print(page) ``` #### Response ```json { "result": [ { "foo": "bar" } ] } ```