# Self-review: Can you fetch data? - Advanced React

1. **True or False: When invoking the fetch() function to get some JSON data from an API, you should pass it a URL.**
    
    * <mark>True</mark>
        
    * False
        
2. **True or False: After invoking the** `fetch()` **function, you need to add a call to the** `then()` **function.**
    
    * <mark>True</mark>
        
    * False
        
3. **Choose the right way to handle the response from a fetch call.**
    
    * <mark>then( response =&gt; response.json())</mark>
        
    * then( response =&gt; json() )
        
    * then( json =&gt; response() )
        

---

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1726468411357/1117cdec-e9ec-4a12-b525-071519bfb35d.png align="center")
