Problembehandlung

How to Retrieve More Than 50 Results via API

1. Min. Lesezeit

By default, Clockify API returns only 50 results per page. If you want to retrieve more than 50 results, you can modify the page-size und gehen parameters.

For GET requests:

  1. Modify the parameters: Add the following parameters at the end of your API endpoint:
    • page=<page_number>
    • page-size=<desired_size> (max 5000 for base and 1000 for report endpoints)
  2. Example:
    • To retrieve more than 50 time entries, use: 
https://api.clockify.me/api/v1/workspaces/{WorkspaceID}/user/{UserID}/time-entries?page=2&page-size=200

For POST requests:

  • Adjust the gehen und page-size:
    • In the request payload, within the detailedFilter section, specify the page and page-size.
  • Example:
{

  "dateRangeStart": "2021-05-28T05:00:00.000000Z",

  "dateRangeEnd": "2021-05-29T00:00:00.000000Z",

  "detailedFilter": {

    "page": 1,

    "page-size": 200

  }

}

War der Artikel hilfreich?

Thank you! If you’d like a member of our support team to respond to you, please drop us a note at support@clockify.me