SharePoint List REST Query
Accessing List through SharePoint 2010 REST services
- http://myserver/_vti_bin/listdata.svc/ : It returns a standard Atom service document that describes collections of information that are available in the SharePoint Foundation site
- http://myserver/_vti_bin/ListData.svc/$metadata/ : It returns entity data model XML that describes the entity types for every list in the website.
- http://myserver/_vti_bin/listdata.svc/Products : It returns Items from the Products list
- http://myserver/_vti_bin/listdata.svc/Products?$filter=startswith(Title,'p1'** : It returns Items from the Products list where title starts with 'p1'
- http://myservre/_vti_bin/listdata.svc/Releases?$select=Title : It returns all the item in the release list with only Title column
- http://myserver/_vti_bin/listdata.svc/Releases?$select=Title,Products/Title&$expand=Products : It returns all items in the release list with also the title from products lists for the releases
For More Details :
https://msdn.microsoft.com/en-us/library/office/fp142385.aspx