REST API for Item List

Hi,

How can i get list of all items (or paginated) using the GET method for /api/resource/Item ?

https://domainname.com/api/resource/Item?limit_page_length=25

you can use frappe client [GitHub - frappe/frappe-client: Python library to use Frappe API]

1 Like

i am writing a php code using curl. i can’t do python

found it.

All listings are returned paginated by 20 items. To change the page size, you can pass limit_page_length. To request succesive pages, pass limit_start as per your limit_page_length.

2 Likes