Hi @Jeries Haddad ,
According to my research and testing, please try to use %20
instead of spaces, for example:
http:(site URL)/_api/web/lists/getbytitle('TWO%20WORDS')/items
In addition, you also can try to use filter operation: http:(site URL)/_api/web/lists?$filter=Title eq 'your list title'
.
Note: If you want to get the items from the list using the Title. You have to make 2 calls:
- Get List GUID ,for example https://tenant.sharepoint.com/\_api/web/lists?$filter=Title eq 'test/List'&$select=Id
- Use the Id from the above response to get the items: https://tenant.sharepoint.com/_api/web/Lists(guid'guid from above request')/Items
Hope it can help you. Thanks for your understanding.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.