## Download matches for string queries by ID `brand_protection.matches.download(MatchDownloadParams**kwargs) -> MatchDownloadResponse` **get** `/accounts/{account_id}/brand-protection/matches/download` Return matches as CSV for string queries based on ID ### Parameters - `account_id: str` - `id: Optional[str]` - `include_domain_id: Optional[bool]` - `limit: Optional[int]` - `offset: Optional[int]` ### Returns - `class MatchDownloadResponse: …` - `matches: Optional[List[Dict[str, object]]]` - `total: Optional[int]` ### 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 ) response = client.brand_protection.matches.download( account_id="x", ) print(response.matches) ``` #### Response ```json { "matches": [ { "foo": "bar" } ], "total": 0 } ```