How to disable pagination in a dashboard?

I created api with strapi dashboard and it works perfectly.

Request:
http://localhost:1337/api/tests

Response:

{
“data”: [
{
“id”: 1,
“attributes”: {
“test”: “show”,
“createdAt”: “2023-10-03T12:55:11.184Z”,
“updatedAt”: “2023-10-03T13:19:44.400Z”,
“publishedAt”: “2023-10-03T12:55:39.153Z”
}
}
],
“meta”: {
“pagination”: {
“page”: 1,
“pageSize”: 0
}
}
}

But I want to disable pagination and not get meta values.How to do that ? Thanks you in advance