Debugging with Console & DevTools

Which DevTools feature would help debug network issues with this function?
function apiRequest(endpoint, data) {
  return fetch(`https://api.example.com/${endpoint}`, {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify(data)
  })
  .then(response => response.json());
}
Next Question (35/40)