Understanding the Kirby API - Search children / Unintended Behaviour

Hey^^,

I am not entirely sure if the following behaviour is intended but if I use a slug as query parameter to search a specific site it returns also sites “like the query”.
In my example I have some very similar pages. The only difference is one number at the end.

My example:
I have 3 children pages: (The following is also the query result)

{
            "id": "blog/smarthome-fuer-starter-teil-1",
            "num": 20221219,
            "title": "Smarthome fĂĽr Starter (Teil 1)",
            "url": "http://kirby-test.jr.local/blog/smarthome-fuer-starter-teil-1",
            "uuid": "page://qm4X5iDXJeeKEf8U"
        },
        {
            "id": "blog/smarthome-fuer-starter-teil-2",
            "num": 20221230,
            "title": "Smarthome fĂĽr Starter (Teil 2)",
            "url": "http://kirby-test.jr.local/blog/smarthome-fuer-starter-teil-2",
            "uuid": "page://lemB9C8iAwubKVL3"
        },
        {
            "id": "blog/smarthome-fuer-starter-teil-3",
            "num": 20230203,
            "title": "Smarthome fĂĽr Starter (Teil 3)",
            "url": "http://kirby-test.jr.local/blog/smarthome-fuer-starter-teil-3",
            "uuid": "page://GU8eBxs2p3vOdbM7"
        }

If I use the “smarthome-fuer-starter-teil-1” as query it returns all 3 - I would understand this behaviour if I delete the last digit then there would be 3 possibilites but in this case it is an “id”. There is clearly not any data that would lead to this result for me (Except the title (excluding the number) there is nothing comparable.

I tried to find the API code but the file kirby > src > api.php is the wrong file I guess ^^

Is this behaviour intended and if so is there a way to change this? - As a workaround I can use the UUID but in general it would be nice to know :slight_smile:

As always thank you for your help :slight_smile:

PS: Kirby 3 and Kirby 4 behave the same ^^ - I am not entirely sure if I should use the Kirby 4 topic :slight_smile: