# Logs Access your application's [logs](https://www.mongodb.com/ko-kr/docs/atlas/app-services/logs/). ## Pagination with the Logging API The Logging endpoint returns up to 100 log entries per page. If the query matches more than 100 entries, the result will be [paginated](https://en.wikipedia.org/wiki/Pagination). Such a result will contain two pieces of information that you will need to request the next page of entries for the same query: the `nextEndDate` and `nextSkip` fields. Paginated results always contain the `nextEndDate` field. A paginated result will also contain the `nextSkip` field if the timestamp of the first entry on the next page is identical to the timestamp of the last entry on the current page. To request the first page of up to 100 log entries, use the endpoint as usual: ```sh curl --request GET \ --header 'Authorization: Bearer ' \ 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/logs' ``` To request the next page of up to 100 log entries, pass the values of `nextEndDate` and `nextSkip` as the `end_date` and `skip` parameters, respectively: ```sh curl --request GET \ --header 'Authorization: Bearer ' \ 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/logs?end_date={nextEndDate of previous response}&skip={nextSkip of previous response}' ``` Repeat this step to get more pages until the response does not have a `nextEndDate` field. This signifies that you have reached the last page. For more information, see [GET /groups/{groupId}/apps/{appId}/logs](#section/adminGetLogs). ## Operations - [Retrieve App Services logs](https://www.mongodb.com/ko-kr/docs/api/doc/atlas-app-services-admin-api-v3/operation/operation-admingetlogs.md) [Powered by Bump.sh](https://bump.sh)