Issue Fetching Data Zoho API

Issue Fetching Data Zoho API

I am trying to fetch these records using zoho api 
but it returns only first 10 records, but there are 24 of them that can be accessed by pagination 


This is the url 
https://www.zohoapis.eu/crm/v3/Matter_Categories/547619000000662695?fields=Solicitors
and here is the reponse
{
    "data": [
        {
            "id": "547619000000662695",
            "$canvas_id": null,
            "Solicitors": [
                {
                    "id": "547619000011665128",
                    "Solicitors": {
                        "name": "Luís Fernando Arbex",
                        "id": "547619000011665115"
                    }
                },
                {
                    "id": "547619000010125561",
                    "Solicitors": {
                        "name": "Sonia Rola",
                        "id": "547619000010125503"
                    }
                },
                {
                    "id": "547619000006366450",
                    "Solicitors": {
                        "name": "Joana Forbes",
                        "id": "547619000006366449"
                    }
                },
                {
                    "id": "547619000005607936",
                    "Solicitors": {
                        "name": "Melanie Bataillard-Samuel",
                        "id": "547619000005607907"
                    }
                },
                {
                    "id": "547619000005479981",
                    "Solicitors": {
                        "name": "Elizabeth Hassall",
                        "id": "547619000005479924"
                    }
                },
                {
                    "id": "547619000005315951",
                    "Solicitors": {
                        "name": "Anne Thomson",
                        "id": "547619000005315922"
                    }
                },
                {
                    "id": "547619000004353358",
                    "Solicitors": {
                        "name": "Pia de Saint Laurent",
                        "id": "547619000004353063"
                    }
                },
                {
                    "id": "547619000003501096",
                    "Solicitors": {
                        "name": "Antonio Arenas López",
                        "id": "547619000003412043"
                    }
                },
                {
                    "id": "547619000002657275",
                    "Solicitors": {
                        "name": "Atifha Aftab",
                        "id": "547619000002643204"
                    }
                },
                {
                    "id": "547619000002657104",
                    "Solicitors": {
                        "name": "Mandeep Clair",
                        "id": "547619000002643003"
                    }
                }
            ],
            "$has_more": {
                "Solicitors": true
            }
        }
    ]
}

How to get all the records for this specific field? 
or is there any other solution to this?