## Read submitted URLs by ID `client.brandProtection.urlInfo(BrandProtectionURLInfoParamsparams, RequestOptionsoptions?): SinglePage` **get** `/accounts/{account_id}/brand-protection/url-info` Return submitted URLs based on ID ### Parameters - `params: BrandProtectionURLInfoParams` - `account_id: string` ### Returns - `BrandProtectionURLInfoResponse = Record` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); // Automatically fetches more pages as needed. for await (const brandProtectionURLInfoResponse of client.brandProtection.urlInfo({ account_id: 'x', })) { console.log(brandProtectionURLInfoResponse); } ``` #### Response ```json { "result": [ { "foo": "bar" } ] } ```