Hi @Aj,
Thanks for reaching out!
Currently, there isn’t a specific Microsoft Graph API to create a list view or a custom view for a SharePoint list. However, you can retrieve list items for specific columns at the list level using the following Graph API:
GET https://graph.microsoft.com/v1.0/sites/{site-id}/lists/{list-id}/items?expand=fields(select=Column1,Column2,Column3)
For more detailed information, you can refer to the Get List Items API documentation.
Hope this helps.
If the reply is helpful, please click "Accept Answer" and kindly upvote it. If you have additional questions about this answer, please click "Comment".