Create list item with Power Automate and REST API

How to create an item in a SharePoint Online list using a Power Automate flow.

URI

_api/web/lists/GetByTitle('<List Title Here>')/items

Headers

{
  "accept ": "application/json;odata=verbose",
  "content-type": "application/json;odata=verbose"
}

Body

{
  "__metadata": {
    "type": "SP.Data.<List Title Here>Item"
  },
  "Title": "The title goes here"
}

Screenshot with example

Screen shot of Power Automate HTTP function.