🔥 3-day streak
Cisco CCNP Cybersecurity CBRCOR (350-201)110 / 147
Question 110 of 147
A SOC analyst runs the following Python snippet to pull threat indicators from a vendor's REST API, but only the first 50 indicators are ever returned even though the vendor confirms thousands exist: ```python import requests resp = requests.get('https://api.vendor.com/v2/indicators', headers=HEADERS) data = resp.json() for ind in data['results']: process(ind) ``` The API documentation states responses include a top-level 'next' field containing the URL of the next page of results (or null when no more pages remain). Which modification will correctly retrieve ALL indicators?
Reviewed for accuracy · Report an issueNext question