In REST APIs, URLs should name resources using nouns, not verbs. The HTTP method tells the server what action to perform. For example, GET /books fetches books, POST /books adds a book, PUT /books/123 updates book 123, and DELETE /books/123 deletes it. Avoid URLs like /getBooks because the verb 'get' is redundant and breaks REST principles. The execution table shows steps with HTTP methods and URLs without verbs, and one example with a verb in the URL to highlight the difference. Variables track the HTTP method, URL, and whether the URL contains a verb. Key moments clarify why verbs in URLs are avoided and how HTTP methods define actions. The quiz tests understanding of these points. Remember: clean URLs use nouns; HTTP methods do the work.